aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
diff options
context:
space:
mode:
authorFlorian Bruhin2018-01-10 18:21:27 +0100
committerGitHub2018-01-10 18:21:27 +0100
commitbf47b815ae7275131d24bc36a2a96b00a0ec2dcc (patch)
tree28a936667a6936d3aee46e3a9b5d7da854ec3f05 /content_scripts
parent7b83828ac69e521327eb036fe2f2db5fd869631a (diff)
downloadvimium-bf47b815ae7275131d24bc36a2a96b00a0ec2dcc.tar.bz2
Fix issue reference
This sounds like #2035, #2305 is unrelated.
Diffstat (limited to 'content_scripts')
-rw-r--r--content_scripts/link_hints.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index 44f7a5f5..020ff1c7 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -607,7 +607,7 @@ LocalHints =
# image), therefore we always return a array of element/rect pairs (which may also be a singleton or empty).
#
getVisibleClickable: (element) ->
- # Get the tag name. However, `element.tagName` can be an element (not a string, see #2305), so we guard
+ # Get the tag name. However, `element.tagName` can be an element (not a string, see #2035), so we guard
# against that.
tagName = element.tagName.toLowerCase?() ? ""
isClickable = false