summaryrefslogtreecommitdiffstats
path: root/packages/wekan-scrollbar/package.js
blob: 0dfdce9403fcef762311f8b944e4e19bdef7ab8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Package.describe({
  summary: "A wrapper for Malihu Custom Scrollbar. Highly customizable custom scrollbar jQuery plugin",
  version: "3.1.3",
  git: "https://github.com/MaazAli/Meteor-Malihu-Custom-Scrollbar.git"
});

Package.onUse(function(api) {
  api.versionsFrom('METEOR@0.9.0.1');

  api.use('jquery');

  // JS
  api.addFiles('jquery.mousewheel.js', 'client');
  api.addFiles('jquery.mCustomScrollbar.js', 'client');

  // CSS

  api.addFiles('jquery.mCustomScrollbar.css', 'client');

});