1 /*global View render_template panels */
2 var EditorView = View.extend({
3 _className: 'EditorView',
8 init: function(element, model, template) {
9 this._super(element, model, template);
12 $('#action-quick-save', this.element).bind('click.editorview', this.quickSave.bind(this));
13 $('#action-commit', this.element).bind('click.editorview', this.commit.bind(this));
14 $('#action-update', this.element).bind('click.editorview', this.update.bind(this));
15 this.freeze('Ćadowanie');
18 quickSave: function(event) {
19 console.log('quickSave');
20 this.model.quickSave();
23 commit: function(event) {
24 console.log('commit');
27 update: function(event) {
28 console.log('update');
32 $('#action-quick-save', this.element).unbind('click.editorview');
33 $('#action-commit', this.element).unbind('click.editorview');
34 $('#action-update', this.element).unbind('click.editorview');