diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-17 15:46:42 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-17 15:46:42 +0200 |
commit | 68f1510f5a6ab632db19fc63f29c0475de9feb9d (patch) | |
tree | 7be8c9c3890465128a50ad8c6880d70ed7720bc7 /module/web/static/js | |
parent | added bootstrap (diff) | |
download | pyload-68f1510f5a6ab632db19fc63f29c0475de9feb9d.tar.xz |
nav + search bar for dashboard
Diffstat (limited to 'module/web/static/js')
-rw-r--r-- | module/web/static/js/default.js | 3 | ||||
-rw-r--r-- | module/web/static/js/views/packageTreeView.js | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/module/web/static/js/default.js b/module/web/static/js/default.js index c5f1e6054..e200f470a 100644 --- a/module/web/static/js/default.js +++ b/module/web/static/js/default.js @@ -30,7 +30,8 @@ require.config({ }, "flot" : ["jquery"], "transit" : ["jquery"], - "omniwindow" : ["jquery"] + "omniwindow" : ["jquery"], + "bootstrap" : ["jquery"] } // end Shim Configuration }); diff --git a/module/web/static/js/views/packageTreeView.js b/module/web/static/js/views/packageTreeView.js index e26924db2..30f159cf7 100644 --- a/module/web/static/js/views/packageTreeView.js +++ b/module/web/static/js/views/packageTreeView.js @@ -24,8 +24,6 @@ define(['jquery', 'backbone', 'underscore', 'models/TreeCollection', 'views/pack }, render: function() { - this.$el.html("<br>"); - var packs = this.tree.get('packages'), files = this.tree.get('files'); |