Always disable forced touch gestures

Don't only disable these for the canvas, disable for the entire page.
There were issues where the control bar handle couldn't be moved on
IE and Edge on Microsoft Surface devices due to these "touch-actions".
This commit is contained in:
Samuel Mannehed 2016-10-26 15:43:43 +02:00
parent ab251ad9ea
commit b1358a1f2e
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,7 @@ body {
background-repeat:no-repeat;
background-position:right bottom;
height:100%;
touch-action: none;
}
html {
@ -527,7 +528,6 @@ input[type=button]:active, select:active {
* scaling will occur. Canvas size depends on remote VNC
* settings and noVNC settings. */
#noVNC_canvas {
touch-action: none;
position: absolute;
left: 0;
right: 0;