diff options
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', |