Fix property name so that autocomplete works correctly in Thunderbird/Seamonkey. Bug 305654, r+sr=mscott

git-svn-id: svn://10.0.0.236/trunk@178771 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bryner%brianryner.com
2005-08-24 05:05:09 +00:00
parent 179281b891
commit b7f69acc6d

View File

@@ -1119,10 +1119,10 @@
this.value = aValue;
var evt = document.createEvent("UIEvents");
evt.initUIEvent("input", true, false, window, 0);
var oldIgnoreInput = this.mIgnoreInputEvent;
this.mIgnoreInputEvent = true;
var oldIgnoreInput = this.ignoreInputEvent;
this.ignoreInputEvent = true;
this.dispatchEvent(evt);
this.mIgnoreInputEvent = oldIgnoreInput;
this.ignoreInputEvent = oldIgnoreInput;
]]></body>
</method>