From 2526a98768128d55ba438136b784281a64c866aa Mon Sep 17 00:00:00 2001 From: "locka%iol.ie" Date: Fri, 1 Sep 2000 13:43:20 +0000 Subject: [PATCH] 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 --- mozilla/xpfe/browser/resources/content/navigatorDD.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mozilla/xpfe/browser/resources/content/navigatorDD.js b/mozilla/xpfe/browser/resources/content/navigatorDD.js index 90cf0e211bc..95898ec4a47 100644 --- a/mozilla/xpfe/browser/resources/content/navigatorDD.js +++ b/mozilla/xpfe/browser/resources/content/navigatorDD.js @@ -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 = "" + urlBar.value + ""; flavourList["text/html"] = { width: 2, data: htmlString }; return flavourList;