aboutsummaryrefslogtreecommitdiff
path: root/ext/js/data
diff options
context:
space:
mode:
authorStefanVukovic99 <stefanvukovic44@gmail.com>2024-04-22 21:58:32 +0200
committerGitHub <noreply@github.com>2024-04-22 19:58:32 +0000
commitc6d93a965a5536979221fda856903356c10c1603 (patch)
tree7511f7c3b432f00e704c62f8eaefc19c252b9dc4 /ext/js/data
parent808ddef82a8eabc77ba20a0da89a392926550e76 (diff)
add duplicate behavior dropdown (#853)
* duplicate behavior dropdown * allow duplicate for existing users * Update docs/anki-integration.md Co-authored-by: James Maa <jmaa@berkeley.edu> Signed-off-by: StefanVukovic99 <stefanvukovic44@gmail.com> * Update docs/anki-integration.md Co-authored-by: James Maa <jmaa@berkeley.edu> Signed-off-by: StefanVukovic99 <stefanvukovic44@gmail.com> * Update docs/anki-integration.md Co-authored-by: James Maa <jmaa@berkeley.edu> Signed-off-by: StefanVukovic99 <stefanvukovic44@gmail.com> * remove suggestion comment --------- Signed-off-by: StefanVukovic99 <stefanvukovic44@gmail.com> Co-authored-by: James Maa <jmaa@berkeley.edu>
Diffstat (limited to 'ext/js/data')
-rw-r--r--ext/js/data/options-util.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js
index 4e468aea..62b062aa 100644
--- a/ext/js/data/options-util.js
+++ b/ext/js/data/options-util.js
@@ -536,7 +536,8 @@ export class OptionsUtil {
this._updateVersion27,
this._updateVersion28,
this._updateVersion29,
- this._updateVersion30
+ this._updateVersion30,
+ this._updateVersion31
];
/* eslint-enable @typescript-eslint/unbound-method */
if (typeof targetVersion === 'number' && targetVersion < result.length) {
@@ -1234,6 +1235,16 @@ export class OptionsUtil {
}
/**
+ * - Added anki.duplicateBehavior
+ * @type {import('options-util').UpdateFunction}
+ */
+ _updateVersion31(options) {
+ for (const {options: profileOptions} of options.profiles) {
+ profileOptions.anki.duplicateBehavior = 'new';
+ }
+ }
+
+ /**
* @param {string} url
* @returns {Promise<chrome.tabs.Tab>}
*/