summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views/actionbarView.js
diff options
context:
space:
mode:
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