diff options
| author | Stephen Blott | 2016-03-29 15:05:52 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-03-29 15:05:52 +0100 | 
| commit | 7ecc65d8215203b89248d8f313783ce48e8ba1c4 (patch) | |
| tree | b9cdb213f283961baf9e42e66649e2c83cdb841f /content_scripts/link_hints.coffee | |
| parent | 3b72ced87f4dc6402f4ab8f8dbf2873e9a53093d (diff) | |
| download | vimium-7ecc65d8215203b89248d8f313783ce48e8ba1c4.tar.bz2 | |
Add tests for WaitForEnter.
Diffstat (limited to 'content_scripts/link_hints.coffee')
| -rw-r--r-- | content_scripts/link_hints.coffee | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index 7dad806f..526e3917 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -286,7 +286,7 @@ class LinkHintsMode                clickEl.focus()              linkActivator clickEl -    installKeyBoardBlocker = (startKeyboardBlocker) -> +    installKeyboardBlocker = (startKeyboardBlocker) ->        if linkMatched.hintDescriptor.frameId == frameId          flashEl = DomUtils.addFlashRect linkMatched.hintDescriptor.rect          HintCoordinator.onExit.push -> DomUtils.removeElement flashEl @@ -297,9 +297,9 @@ class LinkHintsMode      # If we're using a keyboard blocker, then the frame with the focus sends the "exit" message, otherwise the      # frame containing the matched link does.      if userMightOverType and Settings.get "waitForEnterForFilteredHints" -      installKeyBoardBlocker (callback) -> new WaitForEnter callback +      installKeyboardBlocker (callback) -> new WaitForEnter callback      else if userMightOverType -      installKeyBoardBlocker (callback) -> new TypingProtector 200, callback +      installKeyboardBlocker (callback) -> new TypingProtector 200, callback      else if linkMatched.hintDescriptor.frameId == frameId        DomUtils.flashRect linkMatched.hintDescriptor.rect        HintCoordinator.sendMessage "exit", isSuccess: true @@ -750,4 +750,4 @@ root = exports ? window  root.LinkHints = LinkHints  root.HintCoordinator = HintCoordinator  # For tests: -extend root, {LinkHintsMode, LocalHints, AlphabetHints} +extend root, {LinkHintsMode, LocalHints, AlphabetHints, WaitForEnter}  | 
