()
| 54 | |
| 55 | // Follow cursor style of target element |
| 56 | function _capturedElemChanged() { |
| 57 | const proxyElem = document.getElementById("noVNC_mouse_capture_elem"); |
| 58 | proxyElem.style.cursor = window.getComputedStyle(document.captureElement).cursor; |
| 59 | } |
| 60 | |
| 61 | const _captureObserver = new MutationObserver(_capturedElemChanged); |
| 62 |