mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 11:31:19 +08:00
[SSE] Fix drag image in statusbar for ie
This commit is contained in:
@ -272,6 +272,10 @@ define([
|
||||
if (!Common.Utils.isIE) {
|
||||
var img = document.createElement('div');
|
||||
event.dataTransfer.setDragImage(img, 0, 0);
|
||||
} else {
|
||||
this.bar.selectTabs.forEach(function (tab) {
|
||||
tab.$el.find('span').prop('title', '');
|
||||
});
|
||||
}
|
||||
event.dataTransfer.effectAllowed = 'move';
|
||||
this.bar.trigger('tab:dragstart', event.dataTransfer, this.bar.selectTabs);
|
||||
|
||||
Reference in New Issue
Block a user