mirror of https://gitee.com/bigwinds/arangodb
removed notification view
This commit is contained in:
parent
c4b14fcfac
commit
fce3cd2879
|
@ -1,25 +0,0 @@
|
|||
/*jslint indent: 2, nomen: true, maxlen: 100, vars: true, white: true, plusplus: true */
|
||||
/*global window, document, Backbone, EJS, SwaggerUi, hljs, $, arangoHelper, templateEngine */
|
||||
(function() {
|
||||
|
||||
"use strict";
|
||||
|
||||
window.notificationView = Backbone.View.extend({
|
||||
el: '#content',
|
||||
|
||||
template: templateEngine.createTemplate("notificationView.ejs"),
|
||||
|
||||
events: {
|
||||
},
|
||||
|
||||
initialize: function() {
|
||||
//this.collection.fetch({async:false});
|
||||
},
|
||||
|
||||
render: function(){
|
||||
$(this.el).html(this.template.render({}));
|
||||
return this;
|
||||
}
|
||||
|
||||
});
|
||||
}());
|
Loading…
Reference in New Issue