fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' into view-refactor
[redakcja.git]
/
project
/
static
/
js
/
views
/
html.js
diff --git
a/project/static/js/views/html.js
b/project/static/js/views/html.js
index
cd32ced
..
87f2ab7
100644
(file)
--- a/
project/static/js/views/html.js
+++ b/
project/static/js/views/html.js
@@
-5,10
+5,7
@@
var HTMLView = View.extend({
template: 'html-view-template',
init: function(element, model, template) {
template: 'html-view-template',
init: function(element, model, template) {
- this.element = $(element);
- this.model = model;
- this.template = template || this.template;
- this.element.html(render_template(this.template, {}));
+ this._super(element, model, template);
},
dispose: function() {
},
dispose: function() {
@@
-17,4
+14,4
@@
var HTMLView = View.extend({
});
// Register view
});
// Register view
-panels
.push({name: 'html', klass: HTMLView})
;
\ No newline at end of file
+panels
['html'] = HTMLView
;
\ No newline at end of file