1
0
Fork 0

removed notification view

This commit is contained in:
Heiko Kernbach 2014-02-18 08:23:57 +01:00
parent c4b14fcfac
commit fce3cd2879
1 changed files with 0 additions and 25 deletions

View File

@ -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;
}
});
}());