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/tabwidth-input.js | |
parent | 1b7aeb5619638661f09ecaa6aba4b94e02b616ab (diff) |
Explicitly load vendor js in modules that need them
Diffstat (limited to 'data/js/tabwidth-input.js')
-rw-r--r-- | data/js/tabwidth-input.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/js/tabwidth-input.js b/data/js/tabwidth-input.js index 62e2bb3f2..9cc37516d 100644 --- a/data/js/tabwidth-input.js +++ b/data/js/tabwidth-input.js @@ -1,6 +1,6 @@ (function () { 'use strict'; -define(['jquery', 'util'], function ($, Util) { +define(['jquery', 'underscore', 'util'], function ($, _, Util) { var PrivateFunctions = { setupEvents: function () { $('.tabwidth-toggle').on('click', _.bind(function (event) { |