diff options
| author | Matt Garriott | 2012-09-03 13:57:07 -0600 |
|---|---|---|
| committer | Matt Garriott | 2012-09-03 14:07:42 -0600 |
| commit | 61ae9a0c69ce716a15e9347413441cc257e18faa (patch) | |
| tree | d0b9a9c896b7a2e48d2b21890f4d49dd7c4b6843 /background_scripts | |
| parent | b7ea67d458c996de56b44551554600bf05faebe2 (diff) | |
| download | vimium-61ae9a0c69ce716a15e9347413441cc257e18faa.tar.bz2 | |
The help dialog now gets showAdvancedCommands directly from settings.
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/main.coffee | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index 24e7dc79..7b703893 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -90,8 +90,6 @@ root.addExcludedUrl = (url) -> chrome.tabs.query({ windowId: chrome.windows.WINDOW_ID_CURRENT, active: true }, (tabs) -> updateActiveState(tabs[0].id)) -getShowAdvancedCommands = (request) -> Settings.get("helpDialog_showAdvancedCommands") - saveHelpDialogSettings = (request) -> Settings.set("helpDialog_showAdvancedCommands", request.showAdvancedCommands) @@ -110,8 +108,6 @@ root.helpDialogHtml = (showUnboundCommands, showCommandNames, customTitle) -> showUnboundCommands, showCommandNames)) dialogHtml = dialogHtml.replace("{{version}}", currentVersion) dialogHtml = dialogHtml.replace("{{title}}", customTitle || "Help") - dialogHtml = dialogHtml.replace("{{showAdvancedCommands}}", - Settings.get("helpDialog_showAdvancedCommands")) dialogHtml # @@ -569,7 +565,6 @@ portHandlers = sendRequestHandlers = getCompletionKeys: getCompletionKeysRequest, getCurrentTabUrl: getCurrentTabUrl, - getShowAdvancedCommands: getShowAdvancedCommands, openUrlInNewTab: openUrlInNewTab, openUrlInCurrentTab: openUrlInCurrentTab, openOptionsPageInNewTab: openOptionsPageInNewTab, |
