diff options
| author | Phil Crosby | 2014-04-25 22:47:18 -0700 |
|---|---|---|
| committer | Phil Crosby | 2014-04-25 22:47:18 -0700 |
| commit | 55cc9d97662de5198b520dbc622ebb4c386b104c (patch) | |
| tree | 7b01fa8da29267b92eb68896702d2a18357f7ac0 | |
| parent | 3a3fe5bf67b085b2807b7afb2d23083541c4e1b0 (diff) | |
| parent | eeff85159c8a2a63748afe0c669f966b122d004b (diff) | |
| download | vimium-55cc9d97662de5198b520dbc622ebb4c386b104c.tar.bz2 | |
Merge pull request #1039 from mrmr1993/fixOpenLinkInCurrentTab
Fix Open Link in Current Tab command
| -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 8d102503..8a9ea2f1 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -101,7 +101,7 @@ LinkHints = url: link.href) else # OPEN_IN_CURRENT_TAB HUD.show("Open link in current tab") - @linkActivator = (link) -> DomUtils.simulateClick.bind(DomUtils, link) + @linkActivator = (link) -> DomUtils.simulateClick.bind(DomUtils, link)() # # Creates a link marker for the given link. |
