Bug 920532 - Lots of "System JS : ERROR file:///builds/slave/test/build/b2g/components/MozKeyboard.js:380 TypeError: this._inputcontext is null" r=me

This commit is contained in:
Fabrice Desré 2013-09-25 11:42:40 -07:00
Родитель b19b0bb33f
Коммит ccc14a9e83
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -377,7 +377,9 @@ MozInputMethod.prototype = {
}
break;
case 'Keyboard:SelectionChange':
this._inputcontext.updateSelectionContext(json);
if (this.inputcontext) {
this._inputcontext.updateSelectionContext(json);
}
break;
case 'Keyboard:GetContext:Result:OK':
this.setInputContext(json);