diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-04-08 18:01:36 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-04-08 18:01:36 -0700 |
commit | d263a93d446096abfc33e47f591dbb71eb7fe928 (patch) | |
tree | e01643ee126dce24b0f8baae00a40b01e50dbf94 /ext/bg/js/util.js | |
parent | a551b0d462585e7420153c266435b214f134617f (diff) |
usage guide
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r-- | ext/bg/js/util.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index 05c7ff27..64143ffe 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -89,7 +89,8 @@ function optionsSetDefaults(options) { showAdvanced: false, popupWidth: 400, popupHeight: 250, - popupOffset: 10 + popupOffset: 10, + showGuide: true }, scanning: { @@ -144,6 +145,9 @@ function optionsVersion(options) { } else { options.general.audioSource = 'disabled'; } + }, + () => { + options.general.showGuide = false; } ]; |