blob: b2711c8269c239af723d41f062ea72f8f85aa076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Package.describe({
name: 'wekan-scrollbar',
summary: "A wrapper for Malihu Custom Scrollbar. Highly customizable custom scrollbar jQuery plugin",
version: "3.1.3",
git: "https://github.com/wekan/wekan-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');
});
|