diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-10-05 19:01:15 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-10-05 19:01:15 +0200 |
commit | 2c684d72fd8234940a921d4f2a5db28dbadaafa1 (patch) | |
tree | fd35e0806b588b1d4489b5e102c99a50f85bb8c8 /module/web/static/js/default.js | |
parent | fixed some things, so downloads works again (diff) | |
download | pyload-2c684d72fd8234940a921d4f2a5db28dbadaafa1.tar.xz |
updated lodash, tried to style package list
Diffstat (limited to 'module/web/static/js/default.js')
-rw-r--r-- | module/web/static/js/default.js | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/module/web/static/js/default.js b/module/web/static/js/default.js index e200f470a..cb2ef38c3 100644 --- a/module/web/static/js/default.js +++ b/module/web/static/js/default.js @@ -7,15 +7,18 @@ require.config({ jquery:"libs/jquery-1.8.0", jqueryui:"libs/jqueryui", - flot:"libs/jquery.flot.min", + flot:"libs/jquery.flot-1.1", + flotpie: "libs/jquery.flot.pie", transit:"libs/jquery.transit-0.1.3", omniwindow: "libs/jquery.omniwindow", bootstrap: "libs/bootstrap-2.1.1", - underscore:"libs/lodash-0.5.2", + underscore:"libs/lodash-0.7.0", backbone:"libs/backbone-0.9.2", +// handlebars: "libs/Handlebars-1.0rc1", - // Require.js Plugins + // Plugins +// hbs: "plugins/hbs-2.0.1", text:"plugins/text-2.0.3", tpl: "../../templates" @@ -29,11 +32,17 @@ require.config({ exports:"Backbone" //attaches "Backbone" to the window object }, "flot" : ["jquery"], + "flotpie" : ["flot"], "transit" : ["jquery"], "omniwindow" : ["jquery"], "bootstrap" : ["jquery"] } // end Shim Configuration + // Handlebar Configuration +// hbs : { +// templateExtension : 'hbs', +// disableI18n : true +// } }); define('default', ['jquery', 'backbone', 'routers/defaultRouter', 'views/headerView', 'views/packageTreeView', |