diff options
author | 2012-12-22 20:32:58 +0100 | |
---|---|---|
committer | 2012-12-22 20:32:58 +0100 | |
commit | 6e0413b2e036b8fff997bcd1d6017681cdd91cfd (patch) | |
tree | 351eb28c2ab192785d19d4eb18166f42b9eae3d6 /module/web/static/js/default.js | |
parent | updated header, more responsive for smaller width (diff) | |
download | pyload-6e0413b2e036b8fff997bcd1d6017681cdd91cfd.tar.xz |
improved modal dialogs, added one for link grabber
Diffstat (limited to 'module/web/static/js/default.js')
-rw-r--r-- | module/web/static/js/default.js | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/module/web/static/js/default.js b/module/web/static/js/default.js index b3d126b8d..782c97ac2 100644 --- a/module/web/static/js/default.js +++ b/module/web/static/js/default.js @@ -17,7 +17,6 @@ require.config({ handlebars: "libs/Handlebars-1.0rc1", // Plugins - hbs: "libs/hbs-0.4.0", text: "libs/text-2.0.3", tpl: "../../templates" @@ -35,18 +34,11 @@ require.config({ "omniwindow": ["jquery"], "bootstrap": ["jquery"] }, // end Shim Configuration - - // Handlebar Configuration - hbs: { - helperDirectory: 'helpers/', - templateExtension: 'html', - disableI18n: true - } }); define('default', ['jquery', 'backbone', 'utils/initHB', 'routers/defaultRouter', 'views/headerView', 'views/packageTreeView', - 'utils/animations', 'bootstrap'], + 'utils/animations', 'utils/lazyRequire', 'bootstrap'], function($, Backbone, Handlebars, DefaultRouter, HeaderView, TreeView) { var init = function() { |