]> git.proxmox.com Git - mirror_novnc.git/blobdiff - core/util/cursor.js
Remove many small, obsolete, old browser hacks
[mirror_novnc.git] / core / util / cursor.js
index 4db1dab23fb6a93e0e7b5ad24817770b663b1395..1786ed90bc2a389144c470891351164f6d556d7f 100644 (file)
@@ -43,9 +43,6 @@ export default class Cursor {
         if (useFallback) {
             document.body.appendChild(this._canvas);
 
-            // FIXME: These don't fire properly except for mouse
-            ///       movement in IE. We want to also capture element
-            //        movement, size changes, visibility, etc.
             const options = { capture: true, passive: true };
             this._target.addEventListener('mouseover', this._eventHandlers.mouseover, options);
             this._target.addEventListener('mouseleave', this._eventHandlers.mouseleave, options);