mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
typo
This commit is contained in:
parent
d9910ee548
commit
c534abeb62
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
let desiredRetentionFocused = false;
|
let desiredRetentionFocused = false;
|
||||||
let desiredRetentionEverFocused = false;
|
let desiredRetentionEverFocused = false;
|
||||||
let optimized = false;
|
let optimized = false;
|
||||||
const initialParmas = [...fsrsParams($config)];
|
const initialParams = [...fsrsParams($config)];
|
||||||
$: if (desiredRetentionFocused) {
|
$: if (desiredRetentionFocused) {
|
||||||
desiredRetentionEverFocused = true;
|
desiredRetentionEverFocused = true;
|
||||||
}
|
}
|
||||||
|
@ -341,7 +341,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
|
|
||||||
function showSimulatorModal(modal: Modal) {
|
function showSimulatorModal(modal: Modal) {
|
||||||
if (
|
if (
|
||||||
fsrsParams($config).toString() === initialParmas.toString()
|
fsrsParams($config).toString() === initialParams.toString()
|
||||||
) {
|
) {
|
||||||
modal?.show();
|
modal?.show();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue