summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views/actionbarView.js
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-02-28 20:20:01 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-02-28 20:20:01 +0100
commit6b84b9c69ed75baee9c2cdfa758eddcec10b8b23 (patch)
treebd753ec5a8988c798356a4f94de2034fb568b439 /module/web/static/js/views/actionbarView.js
parentprepared dashboard actionbar (diff)
downloadpyload-6b84b9c69ed75baee9c2cdfa758eddcec10b8b23.tar.xz
generate js_apitypes, updated lodash, working type filters on webui
Diffstat (limited to 'module/web/static/js/views/actionbarView.js')
-rw-r--r--module/web/static/js/views/actionbarView.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/module/web/static/js/views/actionbarView.js b/module/web/static/js/views/actionbarView.js
deleted file mode 100644
index bdfb9ef7b..000000000
--- a/module/web/static/js/views/actionbarView.js
+++ /dev/null
@@ -1,28 +0,0 @@
-define(['jquery', 'backbone', 'underscore', 'app'],
- function($, Backbone, _, App) {
-
- // Renders the actionbar for the dashboard
- return Backbone.View.extend({
- el: 'ul.actionbar',
-
- events: {
- },
-
- initialize: function() {
-
- this.$('.search-query').typeahead({
- minLength: 2,
- source: this.getAutocompletion
- });
-
- },
-
- render: function() {
- },
-
- getAutocompletion: function() {
- return ["static", "autocompletion", "demo", "with", "some", "keywords",
- "a very long proposal for autocompletion"];
- }
- });
- }); \ No newline at end of file