aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/link_hints.coffee
diff options
context:
space:
mode:
authorStephen Blott2018-04-01 07:46:49 +0100
committerStephen Blott2018-04-01 07:46:49 +0100
commit5745bb344959a61297fc16e00bb6de0a2a8744d9 (patch)
treefe9b76f6d5e96a2d14619fca0badd36118242696 /content_scripts/link_hints.coffee
parent29838028148a18bfa905e7487c91b83d86533374 (diff)
downloadvimium-092ff89800147966e82dd1b66058ff246c995bd1.tar.bz2
Disable click listener detection and bump to v1.63.3.v1.63.3
Diffstat (limited to 'content_scripts/link_hints.coffee')
-rw-r--r--content_scripts/link_hints.coffee5
1 files changed, 3 insertions, 2 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index 020ff1c7..849aa4c5 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -706,8 +706,9 @@ LocalHints =
isClickable = true
reason = "Open."
- # Detect elements with "click" listeners installed with `addEventListener()`.
- isClickable ||= element.hasAttribute "_vimium-has-onclick-listener"
+ # NOTE(smblott) Disabled pending resolution of #2997.
+ # # Detect elements with "click" listeners installed with `addEventListener()`.
+ # isClickable ||= element.hasAttribute "_vimium-has-onclick-listener"
# An element with a class name containing the text "button" might be clickable. However, real clickables
# are often wrapped in elements with such class names. So, when we find clickables based only on their