Check spelling on the status message textbox.

This commit is contained in:
Florian Quèze 2010-05-03 12:44:40 +02:00
Родитель fdc98e9b87
Коммит 92f3b87d5e
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -345,6 +345,9 @@ var buddyList = {
else
elt.removeAttribute("value");
}
if (!("TextboxSpellChecker" in window))
Components.utils.import("resource://app/modules/imTextboxUtils.jsm");
TextboxSpellChecker.registerTextbox(elt);
// force binding attachmant by forcing layout
elt.getBoundingClientRect();
elt.select();
@ -412,6 +415,7 @@ var buddyList = {
if (elt.hasAttribute("usingDefault"))
elt.setAttribute("value", elt.getAttribute("usingDefault"));
TextboxSpellChecker.unregisterTextbox(elt);
elt.removeAttribute("editing");
elt.removeEventListener("keypress", this.statusMessageKeyPress, false);
elt.removeEventListener("blur", this.statusMessageBlur, false);