aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrmr19932014-12-17 14:39:52 +0000
committermrmr19932014-12-17 20:26:58 +0000
commit2424b8ecc1eeb3b1728f7d4a30db77fccdc8fa05 (patch)
tree00bd9573887573b9231815e45f098f04bd055644
parentc972978b43b943a1ad8709992d080bedbbe12ae2 (diff)
downloadvimium-2424b8ecc1eeb3b1728f7d4a30db77fccdc8fa05.tar.bz2
Ensure cursor is hidden on scroll
-rw-r--r--content_scripts/vimium_frontend.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee
index 6dd244de..fcf5dac1 100644
--- a/content_scripts/vimium_frontend.coffee
+++ b/content_scripts/vimium_frontend.coffee
@@ -1129,7 +1129,7 @@ CursorHider =
@cursorHideStyle = document.createElement("style")
@cursorHideStyle.innerHTML = """
body * {pointer-events: none !important; cursor: none !important;}
- body {cursor: none !important;}
+ body, html {cursor: none !important;}
"""
window.addEventListener "mousemove", @onMouseMove
window.addEventListener "scroll", @onScroll