fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b3c9563bce5c62530ac20e1ad467a2065710f230
[redakcja.git]
/
project
/
static
/
js
/
views
/
editor.js
1
/*global View render_template panels */
2
var EditorView = View.extend({
3
_className: 'EditorView',
4
element: null,
5
model: null,
6
template: null,
7
8
init: function(element, model, template) {
9
this._super(element, model, template);
10
this.model.load();
11
}
12
});