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:
beng%bengoodger.com 2007-08-22 05:04:27 +00:00
Родитель 48fde2f48d
Коммит 37d8b406a7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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");