fix(keyboard): fix keyboard tabbing context

Closes #9568
This commit is contained in:
Adam Bradley
2016-12-09 08:34:12 -06:00
parent 0450a4e812
commit 902a7676b4

View File

@@ -155,7 +155,7 @@ export class Keyboard {
let isKeyInputEnabled = false;
function cssClass() {
this._dom.write(() => {
self._dom.write(() => {
document.body.classList[isKeyInputEnabled ? 'add' : 'remove']('focus-outline');
});
}