зеркало из https://github.com/mozilla/pjs.git
332964 - dragging tab to toolbar or bookmarks menu fails due (in part) to tabbrowser adding flavors to the transferable in the wrong order... r=mconnor
This commit is contained in:
Родитель
48fde2f48d
Коммит
37d8b406a7
|
@ -1605,8 +1605,8 @@
|
|||
|
||||
var URI = this.getBrowserForTab(aEvent.target).currentURI;
|
||||
if (URI) {
|
||||
aXferData.data.addDataForFlavour("text/unicode", URI.spec);
|
||||
aXferData.data.addDataForFlavour("text/x-moz-url", URI.spec + "\n" + aEvent.target.label);
|
||||
aXferData.data.addDataForFlavour("text/unicode", URI.spec);
|
||||
aXferData.data.addDataForFlavour("text/html", '<a href="' + URI.spec + '">' + aEvent.target.label + '</a>');
|
||||
} else {
|
||||
aXferData.data.addDataForFlavour("text/unicode", "about:blank");
|
||||
|
|
Загрузка…
Ссылка в новой задаче