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/uploader.js | |
parent | 1b7aeb5619638661f09ecaa6aba4b94e02b616ab (diff) |
Explicitly load vendor js in modules that need them
Diffstat (limited to 'data/js/uploader.js')
-rw-r--r-- | data/js/uploader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/js/uploader.js b/data/js/uploader.js index 31a16abb1..11ffc8d4a 100644 --- a/data/js/uploader.js +++ b/data/js/uploader.js @@ -1,6 +1,6 @@ (function () { 'use strict'; -define(['jquery'], function ($) { +define(['jquery', 'underscore'], function ($, _) { var ui = { uploadButton: '#upload_button', uploadInputs: 'input.file-upload', |