diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2017-10-15 09:45:00 +0300 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2017-10-15 09:45:00 +0300 |
commit | 0404b42f6188c22e09afd073a755af749a9d0810 (patch) | |
tree | e03f076ce6d886b91505574ca826a08119f0f308 /ext/bg/js/settings.js | |
parent | 03f7ca23e118c5ca804eef35cea05070e69779c7 (diff) |
compact glossaries, line break after tags: on/off
Diffstat (limited to 'ext/bg/js/settings.js')
-rw-r--r-- | ext/bg/js/settings.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bg/js/settings.js b/ext/bg/js/settings.js index b9c59a4a..7a8e1fea 100644 --- a/ext/bg/js/settings.js +++ b/ext/bg/js/settings.js @@ -23,6 +23,8 @@ async function formRead() { optionsNew.general.showGuide = $('#show-usage-guide').prop('checked'); optionsNew.general.compactTags = $('#compact-tags').prop('checked'); + optionsNew.general.tagLineBreak = $('#tag-line-break').prop('checked'); + optionsNew.general.compactGlossaries = $('#compact-glossaries').prop('checked'); optionsNew.general.resultOutputMode = $('#result-output-mode').val(); optionsNew.general.audioSource = $('#audio-playback-source').val(); optionsNew.general.audioVolume = parseFloat($('#audio-playback-volume').val()); @@ -128,6 +130,8 @@ async function onReady() { $('#show-usage-guide').prop('checked', options.general.showGuide); $('#compact-tags').prop('checked', options.general.compactTags); + $('#tag-line-break').prop('checked', options.general.tagLineBreak); + $('#compact-glossaries').prop('checked', options.general.compactGlossaries); $('#result-output-mode').val(options.general.resultOutputMode); $('#audio-playback-source').val(options.general.audioSource); $('#audio-playback-volume').val(options.general.audioVolume); |