diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-14 22:42:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 22:42:11 -0500 |
commit | 1dcfbf6ba6516d05f756d26bf84049d94776ab14 (patch) | |
tree | 538a1a4346a4f98ba366949eda33b4e981e58766 /ext/bg/js/options.js | |
parent | d9f5d21d15a8239ecf349d254606be2c8fa70d31 (diff) |
Support suspending new anki cards (#1240)
* Add new option: anki.suspendNewCards
* Update Anki APIs
* Suspend card based on options
* Add setting
* Disable wrap for toggle property
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 0d3e42a1..cbc390da 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -687,6 +687,8 @@ class OptionsUtil { // Added sentenceParsing.enableTerminationCharacters. // Added sentenceParsing.terminationCharacters. // Changed general.popupActionBarLocation. + // Added inputs.hotkeys. + // Added anki.suspendNewCards. for (const profile of options.profiles) { profile.options.translation.textReplacements = { searchOriginal: true, @@ -731,6 +733,7 @@ class OptionsUtil { {action: 'copyHostSelection', key: 'KeyC', modifiers: ['ctrl'], scopes: ['popup', 'search'], enabled: true} ] }; + profile.options.anki.suspendNewCards = false; } return options; } |