mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-14 18:08:21 +01:00
Revert back the cursor to auto after drop action
This commit is contained in:
parent
bc793ad039
commit
0406395e4c
@ -368,6 +368,8 @@ function egwDragActionImplementation()
|
||||
egw.lang("Ctrl") : egw.lang("Command ⌘");
|
||||
egw.message(egw.lang('Hold [%1] key to select text eg. to copy it', key), 'info');
|
||||
}
|
||||
// Set cursor back to auto. Seems FF can't handle cursor reversion
|
||||
$j('body').css({cursor:'auto'});
|
||||
// Invalid target
|
||||
return true;
|
||||
}
|
||||
@ -645,7 +647,9 @@ function egwDropActionImplementation()
|
||||
popup.auto_paste = true;
|
||||
}, 0); // Timeout is needed to have it working in IE
|
||||
}
|
||||
|
||||
// Set cursor back to auto. Seems FF can't handle cursor reversion
|
||||
$j('body').css({cursor:'auto'});
|
||||
|
||||
_aoi.triggerEvent(EGW_AI_DRAG_OUT);
|
||||
},
|
||||
"over": function() {
|
||||
|
Loading…
Reference in New Issue
Block a user