Bug 403471 - "Address and Search field text half-selected when clicking just inside field bounds" [p=dao r=Mano a1.9=schrep]

This commit is contained in:
reed%reedloden.com 2007-11-13 05:35:17 +00:00
Родитель 700790936d
Коммит 63bbad5e84
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -189,8 +189,10 @@
<handler event="click">
<![CDATA[
if (!this.mIgnoreClick && this.clickSelectsAll &&
this.inputField.selectionStart == this.inputField.selectionEnd)
this.inputField.selectionStart == this.inputField.selectionEnd) {
this.focus();
this.editor.selectAll();
}
]]>
</handler>
</handlers>