Don't let the hidden input field be a tab stop
It's very confusing if you tab between elements and all of a sudden something hidden gets focus.
This commit is contained in:
parent
867daa98af
commit
3e093af55d
2
vnc.html
2
vnc.html
|
@ -329,7 +329,7 @@
|
||||||
style for example -->
|
style for example -->
|
||||||
<textarea id="noVNC_keyboardinput" autocapitalize="off"
|
<textarea id="noVNC_keyboardinput" autocapitalize="off"
|
||||||
autocorrect="off" autocomplete="off" spellcheck="false"
|
autocorrect="off" autocomplete="off" spellcheck="false"
|
||||||
mozactionhint="Enter"></textarea>
|
mozactionhint="Enter" tabindex="-1"></textarea>
|
||||||
|
|
||||||
<canvas id="noVNC_canvas" width="0" height="0" tabindex="-1">
|
<canvas id="noVNC_canvas" width="0" height="0" tabindex="-1">
|
||||||
Canvas not supported.
|
Canvas not supported.
|
||||||
|
|
Loading…
Reference in New Issue