mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 13:10:48 +08:00
[SSE] Fix drag and drop in statusbar for safari
This commit is contained in:
@ -200,10 +200,10 @@ define([
|
||||
tab.$el.children().on(
|
||||
{dragstart: $.proxy(function (e) {
|
||||
var event = e.originalEvent;
|
||||
if (!Common.Utils.isIE) {
|
||||
if (!Common.Utils.isIE && !Common.Utils.isSafari) {
|
||||
var img = document.createElement('div');
|
||||
event.dataTransfer.setDragImage(img, 0, 0);
|
||||
} else {
|
||||
} else if (Common.Utils.isIE) {
|
||||
this.bar.selectTabs.forEach(function (tab) {
|
||||
tab.$el.find('span').prop('title', '');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user