提交 b579e8f5 编写于 作者: B Benjamin Pasero

a11y: do not eat the Tab key in iframe editors

上级 405b8bad
......@@ -137,7 +137,7 @@ export class IFrameEditor extends BaseEditor {
private enableKeybindings(): string {
return [
'<script>',
'var ignoredKeys = [32 /* space */, 33 /* page up */, 34 /* page down */, 38 /* up */, 40 /* down */];',
'var ignoredKeys = [9 /* tab */, 32 /* space */, 33 /* page up */, 34 /* page down */, 38 /* up */, 40 /* down */];',
'var ignoredCtrlCmdKeys = [67 /* c */];',
'window.document.body.addEventListener("keydown", function(event) {', // Listen to keydown events in the iframe
' try {',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册