-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
33 lines (23 loc) · 1017 Bytes
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Package.describe({
summary: "jQuery edit in place plugin. Extendable via plugin architecture. Plugins for plugin. Really."
});
Package.on_use(function (api) {
api.use('jquery')
var path = Npm.require('path');
api.add_files(
[
path.join('jquery_jeditable', 'img', 'calendar.png'),
path.join('jquery_jeditable', 'img', 'indicator.gif'),
path.join('jquery_jeditable', 'jquery.jeditable.js'),
path.join('jquery-autogrow', 'jquery.autogrow.js'),
path.join('jquery_jeditable', 'jquery.jeditable.autogrow.js'),
path.join('jquery_jeditable', 'jquery.jeditable.charcounter.js'),
path.join('jquery.maskedinput', 'src', 'jquery.maskedinput.js'),
path.join('jquery_jeditable', 'jquery.jeditable.masked.js'),
path.join('jquery_jeditable', 'jquery.jeditable.time.js'),
path.join('jquery-timepicker', 'public', 'javascripts', 'jquery.timepicker.js'),
path.join('jquery_jeditable', 'jquery.jeditable.timepicker.js')
],
'client'
);
});