Bug 907520 - Close soft keyboard when findbar closes. r=mbrubeck

This commit is contained in:
Marina Samuel 2013-08-23 16:47:13 -04:00
Родитель 7efee5bdc8
Коммит c7b9f2067f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -140,13 +140,13 @@ var FindHelperUI = {
this._container.removeEventListener("transitionend", onTransitionEnd, true); this._container.removeEventListener("transitionend", onTransitionEnd, true);
this._textbox.value = ""; this._textbox.value = "";
this.status = null; this.status = null;
this._textbox.blur();
this._open = false; this._open = false;
// Restore the scroll synchronisation // Restore the scroll synchronisation
Browser.selectedBrowser.scrollSync = true; Browser.selectedBrowser.scrollSync = true;
}; };
this._textbox.blur();
this._container.addEventListener("transitionend", onTransitionEnd, true); this._container.addEventListener("transitionend", onTransitionEnd, true);
this._container.dismiss(); this._container.dismiss();
Elements.browsers.removeAttribute("findbar"); Elements.browsers.removeAttribute("findbar");