aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Blott2018-01-10 17:47:23 +0000
committerGitHub2018-01-10 17:47:23 +0000
commit50b61b864e90b3c5c794e76bd8babe51587138d3 (patch)
tree28a936667a6936d3aee46e3a9b5d7da854ec3f05
parent7b83828ac69e521327eb036fe2f2db5fd869631a (diff)
parentbf47b815ae7275131d24bc36a2a96b00a0ec2dcc (diff)
downloadvimium-50b61b864e90b3c5c794e76bd8babe51587138d3.tar.bz2
Merge pull request #2910 from The-Compiler/patch-1
Fix issue reference
-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