Bug 614609 - Hitting 'Find in page' after the find in page is already up with text in it will disable the arrows until you type [r=mfinkle]

This commit is contained in:
Vivien Nicolas 2010-12-09 11:06:17 -05:00
Родитель a36687cb4b
Коммит fe0f108c72
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1743,7 +1743,8 @@ var FindHelperUI = {
show: function findHelperShow() {
this._container.show(this);
this.search("");
this.search(this._textbox.value);
this._textbox.select();
this._textbox.focus();
this._open = true;