fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
87f2ab7b3944bf989585a14b409a532db687cb9f
[redakcja.git]
/
project
/
static
/
js
/
views
/
html.js
1
/*global View render_template panels */
2
var HTMLView = View.extend({
3
element: null,
4
model: null,
5
template: 'html-view-template',
6
7
init: function(element, model, template) {
8
this._super(element, model, template);
9
},
10
11
dispose: function() {
12
this._super();
13
}
14
});
15
16
// Register view
17
panels['html'] = HTMLView;