diff options
author | taxus13 <taxus13+github@lostbit.de> | 2015-06-09 22:06:57 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-08-02 16:40:09 +0200 |
commit | 22f729ba0074d5ca323d3a726822155a05539c68 (patch) | |
tree | 62a7ea569478f7c8bcb784e9e1922ed220086306 /public_html/data/js/main.js | |
parent | 81202ecf82132e3294141a49c9dddd1f5b852c04 (diff) |
Support range selection on history page
Support range selection on history page
by adding jquery.checkboxes
Diffstat (limited to 'public_html/data/js/main.js')
-rw-r--r-- | public_html/data/js/main.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public_html/data/js/main.js b/public_html/data/js/main.js index 5710dcb68..3ba5c5c76 100644 --- a/public_html/data/js/main.js +++ b/public_html/data/js/main.js @@ -6,7 +6,8 @@ requirejs.config({ 'bootstrap': ['jquery'], 'jquery.tablesorter': ['jquery'], 'jquery.lazyload': ['jquery'], - 'jquery.colorbox': ['jquery'] + 'jquery.colorbox': ['jquery'], + 'jquery.checkboxes': ['jquery'] }, paths: { 'jquery': 'vendor/jquery-2.0.3.min', @@ -15,6 +16,7 @@ requirejs.config({ 'jquery.tablesorter': 'vendor/jquery.tablesorter.min', 'jquery.lazyload': 'vendor/jquery.lazyload', 'jquery.colorbox': 'vendor/jquery.colorbox', + 'jquery.checkboxes': 'vendor/jquery.checkboxes-1.0.6.min.js', 'underscore': 'vendor/underscore' } }); |