Bug 353306 Can't type into editable menulists r=enndeakin

This commit is contained in:
neil%parkwaycc.co.uk 2006-09-19 15:17:02 +00:00
Родитель a4a1d28d69
Коммит ecb72b4b14
2 изменённых файлов: 12 добавлений и 8 удалений

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

@ -36,11 +36,13 @@
]]>
</handler>
<handler event="keypress" phase="target">
<handler event="keypress">
<![CDATA[
this.menuBoxObject.activeChild = this.selectedInternal;
if (this.menuBoxObject.handleKeyPress(event))
this.menuBoxObject.activeChild.doCommand();
if (event.originalTarget == this) {
this.menuBoxObject.activeChild = this.selectedInternal;
if (this.menuBoxObject.handleKeyPress(event))
this.menuBoxObject.activeChild.doCommand();
}
]]>
</handler>
</handlers>

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

@ -36,11 +36,13 @@
]]>
</handler>
<handler event="keypress" phase="target">
<handler event="keypress">
<![CDATA[
this.menuBoxObject.activeChild = this.selectedInternal;
if (this.menuBoxObject.handleKeyPress(event))
this.menuBoxObject.activeChild.doCommand();
if (event.originalTarget == this) {
this.menuBoxObject.activeChild = this.selectedInternal;
if (this.menuBoxObject.handleKeyPress(event))
this.menuBoxObject.activeChild.doCommand();
}
]]>
</handler>
</handlers>