diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-02-08 09:24:14 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-02-08 09:24:14 -0800 |
commit | f3fe0994f52067d7c6d1886b02afd8f0a2a15099 (patch) | |
tree | 7ed9b1bfbc0d0e9d665f91ae5297614846ebf95e /ext/bg/js/options-form.js | |
parent | b3487370db3540a8cafa0346eed1e9109abe7682 (diff) |
add option to disable imposters, bump version1.0.11
Diffstat (limited to 'ext/bg/js/options-form.js')
-rw-r--r-- | ext/bg/js/options-form.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bg/js/options-form.js b/ext/bg/js/options-form.js index 00b6a63e..4470d105 100644 --- a/ext/bg/js/options-form.js +++ b/ext/bg/js/options-form.js @@ -37,6 +37,7 @@ function getFormData() { optionsNew.scanning.requireShift = $('#hold-shift-to-scan').prop('checked'); optionsNew.scanning.selectText = $('#select-matched-text').prop('checked'); + optionsNew.scanning.imposter = $('#search-form-text-fields').prop('checked'); optionsNew.scanning.delay = parseInt($('#scan-delay').val(), 10); optionsNew.scanning.length = parseInt($('#scan-length').val(), 10); @@ -95,6 +96,7 @@ $(document).ready(() => { $('#hold-shift-to-scan').prop('checked', options.scanning.requireShift); $('#select-matched-text').prop('checked', options.scanning.selectText); + $('#search-form-text-fields').prop('checked', options.scanning.imposter); $('#scan-delay').val(options.scanning.delay); $('#scan-length').val(options.scanning.length); |