aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/settings.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'background_scripts/settings.coffee')
-rw-r--r--background_scripts/settings.coffee5
1 files changed, 4 insertions, 1 deletions
diff --git a/background_scripts/settings.coffee b/background_scripts/settings.coffee
index 4342aa26..a60f2e09 100644
--- a/background_scripts/settings.coffee
+++ b/background_scripts/settings.coffee
@@ -73,7 +73,6 @@ root.Settings = Settings =
linkHintNumbers: "0123456789"
filterLinkHints: false
hideHud: false
- grabBackfocus: false
userDefinedLinkHintCss:
"""
div > .vimiumHintMarker {
@@ -117,6 +116,10 @@ root.Settings = Settings =
settingsVersion: Utils.getCurrentVersion()
+ # NOTE. This setting is accessed directly via chrome.storage.sync in the front end. There, we assume that
+ # the default value is false.
+ grabBackFocus: false
+
# We use settingsVersion to coordinate any necessary schema changes.
if Utils.compareVersions("1.42", Settings.get("settingsVersion")) != -1