Bug 329659, download manager open,remove and contextmenu don't work anymore r=rob_strong

git-svn-id: svn://10.0.0.236/trunk@191987 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
Olli.Pettay%helsinki.fi 2006-03-08 18:40:56 +00:00
parent 1fd9b99bc1
commit 13ea295d5a
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@
<body>
<![CDATA[
var e = document.createEvent("Events");
e.initEvent("download-" + aEventType, false, true);
e.initEvent("download-" + aEventType, true, true);
this.dispatchEvent(e);
]]>

View File

@ -113,7 +113,7 @@ function getRDFProperty(aID, aProperty)
function fireEventForElement(aElement, aEventType)
{
var e = document.createEvent("Events");
e.initEvent("download-" + aEventType, false, true);
e.initEvent("download-" + aEventType, true, true);
aElement.dispatchEvent(e);
}