diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-04-23 11:10:35 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-04-23 11:10:35 -0700 |
commit | a209228c311a13328ecdda4056a9302885639195 (patch) | |
tree | f412a23f65cbd3f325937d8cd94e8ccec5b7ef28 /ext/bg/js/options.js | |
parent | 3523b85be0be618b00cd9b6992aaf255de12ebfb (diff) | |
parent | 3319d0d3cdaf98a8fd57b7c51e745f60960f607e (diff) |
Merge branch 'master' into firefox-amo
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 49544840..1ea6ed68 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -40,6 +40,7 @@ function formRead() { optionsNew.scanning.middleMouse = $('#middle-mouse-button-scan').prop('checked'); optionsNew.scanning.selectText = $('#select-matched-text').prop('checked'); optionsNew.scanning.imposter = $('#search-form-text-fields').prop('checked'); + optionsNew.scanning.alphanumeric = $('#search-alphanumeric').prop('checked'); optionsNew.scanning.delay = parseInt($('#scan-delay').val(), 10); optionsNew.scanning.length = parseInt($('#scan-length').val(), 10); @@ -127,6 +128,7 @@ $(document).ready(() => { $('#middle-mouse-button-scan').prop('checked', options.scanning.middleMouse); $('#select-matched-text').prop('checked', options.scanning.selectText); $('#search-form-text-fields').prop('checked', options.scanning.imposter); + $('#search-alphanumeric').prop('checked', options.scanning.alphanumeric); $('#scan-delay').val(options.scanning.delay); $('#scan-length').val(options.scanning.length); |