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

This commit is contained in:
bryner%brianryner.com 2005-08-24 05:05:09 +00:00
Родитель e20adc4401
Коммит 5de00b1466
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -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>