diff options
| author | mrmr1993 | 2015-05-31 18:59:51 +0100 | 
|---|---|---|
| committer | mrmr1993 | 2015-05-31 18:59:51 +0100 | 
| commit | 1e380ff702b09c0ba98f8b067b47a02fe7561729 (patch) | |
| tree | 509eef67f0f58961c55bf1d0a102bf7c26bda3e2 /lib/settings.coffee | |
| parent | dbf0ed0956485ccd3c0fb3fb12cf12c007d63394 (diff) | |
| download | vimium-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.
Diffstat (limited to 'lib/settings.coffee')
| -rw-r--r-- | lib/settings.coffee | 1 | 
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 | 
