diff options
| author | mrmr1993 | 2017-11-24 15:02:55 +0000 |
|---|---|---|
| committer | mrmr1993 | 2017-11-24 15:02:55 +0000 |
| commit | 8be9c399386049d9a44579f9be59aee9d525f8d8 (patch) | |
| tree | 40610af53a2c3b957becb6aefc6a1f567450a1d2 | |
| parent | 4a95a750c0642212c7907f3e8673013d473b2618 (diff) | |
| download | vimium-8be9c399386049d9a44579f9be59aee9d525f8d8.tar.bz2 | |
Reintroduce default value for argument in LinkHints::activateLink
| -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 814ae3b7..9ab917d1 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -359,7 +359,7 @@ class LinkHintsMode # When only one hint remains, activate it in the appropriate way. The current frame may or may not contain # the matched link, and may or may not have the focus. The resulting four cases are accounted for here by # selectively pushing the appropriate HintCoordinator.onExit handlers. - activateLink: (linkMatched, userMightOverType) -> + activateLink: (linkMatched, userMightOverType = false) -> @removeHintMarkers() if linkMatched.isLocalMarker |
