()
| 1523 | }, |
| 1524 | |
| 1525 | hideVirtualKeyboard() { |
| 1526 | if (!isTouchDevice) return; |
| 1527 | |
| 1528 | const input = document.getElementById('noVNC_keyboardinput'); |
| 1529 | |
| 1530 | if (document.activeElement != input) return; |
| 1531 | |
| 1532 | input.blur(); |
| 1533 | }, |
| 1534 | |
| 1535 | toggleVirtualKeyboard() { |
| 1536 | if (document.getElementById('noVNC_keyboard_button') |