aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrmr19932015-05-31 18:59:51 +0100
committermrmr19932015-05-31 18:59:51 +0100
commit1e380ff702b09c0ba98f8b067b47a02fe7561729 (patch)
tree509eef67f0f58961c55bf1d0a102bf7c26bda3e2
parentdbf0ed0956485ccd3c0fb3fb12cf12c007d63394 (diff)
downloadvimium-1e380ff702b09c0ba98f8b067b47a02fe7561729.tar.bz2
Add a default value for helpDialog_showAdvancedCommands
We need this because Settings rejects key/value pairs from chrome.storage for which there were no default values. Previously, this only meant that the setting would not sync; now it meant that the setting wasn't ever made available to the frontend. This commit fixes it, and now the setting will sync.
-rw-r--r--lib/settings.coffee1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/settings.coffee b/lib/settings.coffee
index 88e3b883..5bbc9719 100644
--- a/lib/settings.coffee
+++ b/lib/settings.coffee
@@ -198,6 +198,7 @@ root.Settings = Settings =
grabBackFocus: false
settingsVersion: Utils.getCurrentVersion()
+ helpDialog_showAdvancedCommands: false
# Export Sync via Settings for tests.
root.Settings.Sync = Sync