X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/2b589ff1348083317b6fba787c1b4fd61eecf8c9..24ad9f957d8f56a209518a28f42fbfae2e482b54:/src/editor/modules/documentCanvas/canvas/gutter.js diff --git a/src/editor/modules/documentCanvas/canvas/gutter.js b/src/editor/modules/documentCanvas/canvas/gutter.js index a382871..b6bd665 100644 --- a/src/editor/modules/documentCanvas/canvas/gutter.js +++ b/src/editor/modules/documentCanvas/canvas/gutter.js @@ -46,7 +46,6 @@ var GutterGroupView = function(gutterView, group) { $.extend(GutterGroupView.prototype, { remove: function() { this.group.off('viewAdded', this.onViewAdded); - this.group.off('offsetChange', this.onOffsetChange); this.group.off('focusToggled', this.onFocusToggled); this.dom.detach(); }, @@ -79,10 +78,6 @@ $.extend(ViewGroup.prototype, Backbone.Events, { getOffsetHint: function() { return _.isFunction(this.params.offsetHint) ? this.params.offsetHint() : this.params.offsetHint; }, - setOffset: function(offset) { - this.trigger('offsetChange', offset); - this._offset = offset; - }, addView: function(view) { this.views.push(view); this.trigger('viewAdded', view);