Bug 1161930 - Quick find shortcut both opens the findbar and types a slash in the inputbox. r=aleth

This commit is contained in:
Nihanth Subramanya 2015-06-18 01:14:10 -07:00
Родитель 6cadb72d42
Коммит d43f3e5e55
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -876,6 +876,10 @@
// message styles.
this.contentWindow.scrollToElement = this._scrollToElement.bind(this);
this.contentWindow.autoScrollEnabled = this.autoScrollEnabled.bind(this);
// A common use case is to click somewhere in the conversation and
// start typing a command (often /me). If quick find is enabled, it
// will pick up the "/" keypress and open the findbar. See bug 1161930.
this.contentWindow.document.documentElement.setAttribute("disablefastfind", "true");
return;
}
this.removeProgressListener(this);