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