diff options
author | Joakim Reinert <mail@jreinert.com> | 2015-05-02 00:01:00 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-05-05 12:21:27 +0200 |
commit | 46f0516a885ff28d63699c892eecd7a34b6a9ac3 (patch) | |
tree | 47daf7d8e43cc360763a396b6b59a2bc8ca76022 /data/js/application.js | |
parent | 1b7aeb5619638661f09ecaa6aba4b94e02b616ab (diff) |
Explicitly load vendor js in modules that need them
Diffstat (limited to 'data/js/application.js')
-rw-r--r-- | data/js/application.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/data/js/application.js b/data/js/application.js index c503da4f1..310362dd9 100644 --- a/data/js/application.js +++ b/data/js/application.js @@ -9,7 +9,9 @@ define( 'thumbnail-view', 'uploader', 'tablesorter', - 'vendor' + 'jquery', + 'jquery.lazyload', + 'bootstrap' ], function ( require, @@ -18,7 +20,8 @@ define( TabwidthInput, ThumbnailView, Uploader, - TableSorter + TableSorter, + $ ) { var ui = { lazyLoadingImages: 'img.lazyload' |