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
parent b19b0bb33f
commit ccc14a9e83

View File

@ -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);