зеркало из https://github.com/mozilla/gecko-dev.git
Bug 288194 - XUL <textbox> is too hard to focus. r=enndeakin
This commit is contained in:
Родитель
0de987137c
Коммит
4d1b70d42d
|
@ -271,6 +271,9 @@
|
|||
if (!this.mIgnoreClick) {
|
||||
this.mIgnoreFocus = true;
|
||||
this.inputField.setSelectionRange(0, 0);
|
||||
if (event.originalTarget == this ||
|
||||
event.originalTarget == this.inputField.parentNode)
|
||||
this.inputField.focus();
|
||||
}
|
||||
]]>
|
||||
</handler>
|
||||
|
@ -278,10 +281,8 @@
|
|||
<handler event="click">
|
||||
<![CDATA[
|
||||
if (!this.mIgnoreClick && this.clickSelectsAll &&
|
||||
this.inputField.selectionStart == this.inputField.selectionEnd) {
|
||||
this.inputField.focus()
|
||||
this.inputField.selectionStart == this.inputField.selectionEnd)
|
||||
this.editor.selectAll();
|
||||
}
|
||||
]]>
|
||||
</handler>
|
||||
</handlers>
|
||||
|
|
Загрузка…
Ссылка в новой задаче