fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Test fix.
[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
});