()
| 1736 | }, |
| 1737 | |
| 1738 | toggleAlt() { |
| 1739 | const btn = document.getElementById('noVNC_toggle_alt_button'); |
| 1740 | if (btn.classList.contains("noVNC_selected")) { |
| 1741 | UI.sendKey(KeyTable.XK_Alt_L, "AltLeft", false); |
| 1742 | btn.classList.remove("noVNC_selected"); |
| 1743 | } else { |
| 1744 | UI.sendKey(KeyTable.XK_Alt_L, "AltLeft", true); |
| 1745 | btn.classList.add("noVNC_selected"); |
| 1746 | } |
| 1747 | }, |
| 1748 | |
| 1749 | sendCtrlAltDel() { |
| 1750 | UI.rfb.sendCtrlAltDel(); |