Removed hack put in to drag and drop to workaround this bug. b=41984, r=jst

git-svn-id: svn://10.0.0.236/trunk@77880 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
locka%iol.ie
2000-09-01 13:43:20 +00:00
parent 590c8ec194
commit 2526a98768

View File

@@ -421,9 +421,7 @@ var proxyIconDNDObserver = {
var urlBar = document.getElementById("urlbar");
var flavourList = { };
flavourList["text/unicode"] = { width: 2, data: urlBar.value };
// flavourList["text/x-moz-url"] = { width: 2, data: urlBar.value + " " + window.title };
//*** hack until bug 41984 is fixed. uncomment the above line, it is the "correct" fix
flavourList["text/x-moz-url"] = { width: 2, data: urlBar.value + " " + "( TEMP TITLE )" };
flavourList["text/x-moz-url"] = { width: 2, data: urlBar.value + " " + window.title };
var htmlString = "<a href=\"" + urlBar.value + "\">" + urlBar.value + "</a>";
flavourList["text/html"] = { width: 2, data: htmlString };
return flavourList;