diff options
| author | Stephen Blott | 2015-02-08 09:11:54 +0000 |
|---|---|---|
| committer | Stephen Blott | 2015-02-08 09:13:03 +0000 |
| commit | e7e88b10afe4329034db7a2320bc16235f25f081 (patch) | |
| tree | 14106ba5258c7f7bff3e13c3968c5ef83a3fbcb2 | |
| parent | c7ada0369f5f49180246eec655249a85643d5df2 (diff) | |
| download | vimium-e7e88b10afe4329034db7a2320bc16235f25f081.tar.bz2 | |
Fix typo/bug initialising passkeys.
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 76c654a6..004a5f96 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -511,7 +511,7 @@ checkIfEnabledForUrl = -> chrome.runtime.sendMessage { handler: "isEnabledForUrl", url: url }, (response) -> isEnabledForUrl = response.isEnabledForUrl - passKeys = request.passKeys + passKeys = response.passKeys initializeWhenEnabled() if isEnabledForUrl else if (HUD.isReady()) # Quickly hide any HUD we might already be showing, e.g. if we entered insert mode on page load. |
