diff options
| author | Stephen Blott | 2018-01-10 17:47:23 +0000 |
|---|---|---|
| committer | GitHub | 2018-01-10 17:47:23 +0000 |
| commit | 50b61b864e90b3c5c794e76bd8babe51587138d3 (patch) | |
| tree | 28a936667a6936d3aee46e3a9b5d7da854ec3f05 | |
| parent | 7b83828ac69e521327eb036fe2f2db5fd869631a (diff) | |
| parent | bf47b815ae7275131d24bc36a2a96b00a0ec2dcc (diff) | |
| download | vimium-50b61b864e90b3c5c794e76bd8babe51587138d3.tar.bz2 | |
Merge pull request #2910 from The-Compiler/patch-1
Fix issue reference
| -rw-r--r-- | content_scripts/link_hints.coffee | 2 |
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 |
