mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 14:03:55 -05:00
./check
This commit is contained in:
parent
300d050460
commit
89decc2736
1 changed files with 2 additions and 6 deletions
|
|
@ -192,18 +192,14 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
|
||||
if (resp.healthCheckPassed !== undefined) {
|
||||
if (resp.healthCheckPassed) {
|
||||
setTimeout(
|
||||
() => alert(tr.deckConfigFsrsGoodFit()),
|
||||
200,
|
||||
);
|
||||
setTimeout(() => alert(tr.deckConfigFsrsGoodFit()), 200);
|
||||
} else {
|
||||
setTimeout(
|
||||
() => alert(tr.deckConfigFsrsBadFitWarning()),
|
||||
200,
|
||||
);
|
||||
}
|
||||
}
|
||||
else if (already_optimal) {
|
||||
} else if (already_optimal) {
|
||||
const msg = resp.fsrsItems
|
||||
? tr.deckConfigFsrsParamsOptimal()
|
||||
: tr.deckConfigFsrsParamsNoReviews();
|
||||
|
|
|
|||
Loading…
Reference in a new issue