diff --git a/res/app/components/stf/screen/screen-directive.js b/res/app/components/stf/screen/screen-directive.js index e15facdb..d30ccc4b 100644 --- a/res/app/components/stf/screen/screen-directive.js +++ b/res/app/components/stf/screen/screen-directive.js @@ -129,6 +129,11 @@ module.exports = function DeviceScreenDirective($document, ScalingService, } function keydownListener(e) { + // Prevent tab from switching focus to the next element, we only want + // that to happen on the device side. + if (e.keyCode === 9) { + e.preventDefault() + } control.keyDown(e.keyCode) }