mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
Package.describe({
|
|
summary: "Execute a function when the user scrolls past an element"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use('jquery');
|
|
api.add_files('waypoints.js', 'client');
|
|
});
|