summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2016-08-25 20:45:52 +0200
committerPierre Ossman <ossman@cendio.se>2016-09-23 14:39:21 +0200
commitc8d4402f582e4d4fb62ca75aae3241f9e0917190 (patch)
treed5b71ea11ea7d60902e8aaaf7cfd92fa4142a9f9
parent79fd3b1fcff7204b836928e64a9f634fe5e179ec (diff)
downloadnovnc-c8d4402f582e4d4fb62ca75aae3241f9e0917190.tar.gz
Move touch text input out of control bar
It has nothing to do with the control bar, so hide it somewhere more sensible.
-rw-r--r--vnc.html15
1 files changed, 8 insertions, 7 deletions
diff --git a/vnc.html b/vnc.html
index 6c2b9d6..a660988 100644
--- a/vnc.html
+++ b/vnc.html
@@ -72,13 +72,6 @@
<input type="image" alt="Keyboard" src="app/images/keyboard.svg"
id="noVNC_keyboard_button" class="noVNC_button"
value="Keyboard" title="Show Keyboard" />
- <!-- Note that Google Chrome on Android doesn't respect any of these,
- html attributes which attempt to disable text suggestions on the
- on-screen keyboard. Let's hope Chrome implements the ime-mode
- style for example -->
- <textarea id="noVNC_keyboardinput" autocapitalize="off"
- autocorrect="off" autocomplete="off" spellcheck="false"
- mozactionhint="Enter"></textarea>
<div id="noVNC_extra_keys">
<input type="image" alt="Extra keys" src="app/images/toggleextrakeys.svg"
id="noVNC_toggle_extra_keys_button" class="noVNC_button" />
@@ -197,6 +190,14 @@
<!-- HTML5 Canvas -->
<div id="noVNC_screen" class="noVNC_hidden">
+ <!-- Note that Google Chrome on Android doesn't respect any of these,
+ html attributes which attempt to disable text suggestions on the
+ on-screen keyboard. Let's hope Chrome implements the ime-mode
+ style for example -->
+ <textarea id="noVNC_keyboardinput" autocapitalize="off"
+ autocorrect="off" autocomplete="off" spellcheck="false"
+ mozactionhint="Enter"></textarea>
+
<canvas id="noVNC_canvas" width="0" height="0">
Canvas not supported.
</canvas>