aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/link_hints.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'content_scripts/link_hints.coffee')
-rw-r--r--content_scripts/link_hints.coffee2
1 files changed, 2 insertions, 0 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index 7153338b..56a3d75e 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -623,6 +623,8 @@ LocalHints =
isClickable ||=
if element == document.body and windowIsFocused() and Scroller.isScrollableElement element
reason = "Scroll."
+ when "img"
+ isClickable ||= element.style.cursor in ["zoom-in", "zoom-out"]
when "div", "ol", "ul"
isClickable ||=
if element.clientHeight < element.scrollHeight and Scroller.isScrollableElement element