diff options
| author | Stephen Blott | 2015-02-08 09:18:50 +0000 |
|---|---|---|
| committer | Stephen Blott | 2015-02-08 09:24:13 +0000 |
| commit | 534e460f437ade1016ddff6d7ffa2c2e6b254b17 (patch) | |
| tree | 99e68fc93037cb0f5f0684ff82dec1acfe2d8612 /background_scripts | |
| parent | e7e88b10afe4329034db7a2320bc16235f25f081 (diff) | |
| download | vimium-534e460f437ade1016ddff6d7ffa2c2e6b254b17.tar.bz2 | |
Incognito mode for find history.
- This commit is incomplete because, to progress, we need bc7db7473456713c8c84f324e71da93145ffa2a0.
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/main.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index c1c8dfc8..07127af9 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -382,7 +382,7 @@ root.updateActiveState = updateActiveState = (tabId) -> setBrowserActionIcon(tabId,disabledIcon) # Propagate the new state only if it has changed. if (isCurrentlyEnabled != enabled || currentPasskeys != passKeys) - chrome.tabs.sendMessage(tabId, { name: "setState", enabled: enabled, passKeys: passKeys }) + chrome.tabs.sendMessage(tabId, { name: "setState", enabled: enabled, passKeys: passKeys, incognito: tab.incognito }) else # We didn't get a response from the front end, so Vimium isn't running. setBrowserActionIcon(tabId,disabledIcon) |
