We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 122677b + 8d60f54 commit 89d9a90Copy full SHA for 89d9a90
1 file changed
src/common/emu.ts
@@ -32,7 +32,7 @@ export function __createCanvas(doc:HTMLDocument, mainElement:HTMLElement, width:
32
canvas.width = width;
33
canvas.height = height;
34
canvas.classList.add("emuvideo");
35
- canvas.tabIndex = -1; // Make it focusable
+ canvas.tabIndex = 0; // Make it focusable and tabbable
36
mainElement.appendChild(canvas);
37
return canvas;
38
}
0 commit comments