Bug 583341 - 'Lose' focus if MeeGoTouch VKB is closed by the user [r=mfinkle]

This commit is contained in:
Steffen Imhof 2010-08-27 15:16:53 -04:00
parent a5964a06a7
commit a1f29a7bda

View File

@ -37,8 +37,18 @@
this.readOnly = false;
]]>
</handler>
<handler event="text" phase="bubbling"
action="if (this.mController.input == this) this.mController.handleText();"/>
<handler event="text" phase="bubbling">
<![CDATA[
if (this.mController.input == this)
this.mController.handleText();
]]>
</handler>
<handler event="blur" phase="capturing">
<![CDATA[
// suppress disconnect of autocomplete controller
this._dontBlur = true;
]]>
</handler>
</handlers>
</binding>