package.js 456 B

1234567891011121314
  1. Package.describe({
  2. name: "luegg:angularjs-scroll-glue",
  3. summary: "Scrolls to the bottom of an element on changes",
  4. description: "An AngularJs directive that automatically scrolls to the bottom of an element on changes in it's scope.",
  5. version: "2.0.7",
  6. git: "https://github.com/Luegg/angularjs-scroll-glue.git"
  7. });
  8. Package.onUse(function(api) {
  9. api.versionsFrom('METEOR@1.0');
  10. api.addFiles('src/scrollglue.js', 'client');
  11. });