зеркало из https://github.com/mozilla/pjs.git
Bug 471438, check whether the drop event was cancelled when handling links in the browser
This commit is contained in:
Родитель
c0b0f04bb6
Коммит
f41878d565
|
@ -4917,6 +4917,9 @@ function middleMousePaste(event)
|
|||
var contentAreaDNDObserver = {
|
||||
onDrop: function (aEvent, aXferData, aDragSession)
|
||||
{
|
||||
if (aEvent.getPreventDefault())
|
||||
return;
|
||||
|
||||
var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType);
|
||||
|
||||
// valid urls don't contain spaces ' '; if we have a space it
|
||||
|
|
Загрузка…
Ссылка в новой задаче