mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 13:10:48 +08:00
[SSE] Fix bug 49203
This commit is contained in:
@ -192,6 +192,7 @@ define([
|
||||
me.onCellsRange(status);
|
||||
},
|
||||
'tabs:dragend': _.bind(me.onDragEndMouseUp, me),
|
||||
'pivot:dragend': _.bind(me.onDragEndMouseUp, me),
|
||||
'protect:wslock': _.bind(me.onChangeProtectSheet, me)
|
||||
});
|
||||
Common.Gateway.on('processmouse', _.bind(me.onProcessMouse, me));
|
||||
|
||||
@ -208,6 +208,7 @@ define([
|
||||
onDragEnd: function() {
|
||||
this._dragEl && this._dragEl.remove();
|
||||
this._dragEl = null;
|
||||
Common.NotificationCenter.trigger('pivot:dragend', this);
|
||||
},
|
||||
|
||||
onFieldsDragStart: function (item, index, event) {
|
||||
|
||||
Reference in New Issue
Block a user