diff options
author | 2012-09-16 21:45:10 +0200 | |
---|---|---|
committer | 2012-09-16 21:45:10 +0200 | |
commit | 6a8303b004e1976739371431aa7358c672ad7313 (patch) | |
tree | 108da54419661af1cd6edc860ec6494be61e7051 /module/web/static/js/default.js | |
parent | higher low speed time, easier way to set curl options (diff) | |
download | pyload-6a8303b004e1976739371431aa7358c672ad7313.tar.xz |
added bootstrap
Diffstat (limited to 'module/web/static/js/default.js')
-rw-r--r-- | module/web/static/js/default.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/module/web/static/js/default.js b/module/web/static/js/default.js index d4330da81..c5f1e6054 100644 --- a/module/web/static/js/default.js +++ b/module/web/static/js/default.js @@ -10,12 +10,14 @@ require.config({ flot:"libs/jquery.flot.min", transit:"libs/jquery.transit-0.1.3", omniwindow: "libs/jquery.omniwindow", + bootstrap: "libs/bootstrap-2.1.1", underscore:"libs/lodash-0.5.2", backbone:"libs/backbone-0.9.2", // Require.js Plugins - text:"plugins/text-2.0.3" + text:"plugins/text-2.0.3", + tpl: "../../templates" }, @@ -33,7 +35,8 @@ require.config({ }); -define('default', ['jquery', 'backbone', 'routers/defaultRouter', 'views/headerView', 'views/packageTreeView', 'utils/animations'], +define('default', ['jquery', 'backbone', 'routers/defaultRouter', 'views/headerView', 'views/packageTreeView', + 'utils/animations', 'bootstrap'], function ($, Backbone, DefaultRouter, HeaderView, TreeView) { |