mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
Package.describe({
|
|
summary: "A set of commonly used animation decorators"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.export(['AnimatedList']);
|
|
api.use(['jquery', 'ui']);
|
|
api.add_files(['animated_each.js'], 'client');
|
|
});
|