summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.org>2025-12-21 09:12:43 -0500
committerJakob L. Kreuze <zerodaysfordays@sdf.org>2025-12-21 09:12:43 -0500
commitad21c2d9cd8ef86a4c557cfe601ea9918a3fa2d4 (patch)
treeb1a2758885cb0d5ddb03cf47f02d02859728adf1
parent20658fa66757843321540b22297bc444af3b91e2 (diff)
Flag cards that are marked as forgottenHEADmaster
-rw-r--r--srs-anywhere.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/srs-anywhere.js b/srs-anywhere.js
index 0931b07..8f77f02 100644
--- a/srs-anywhere.js
+++ b/srs-anywhere.js
@@ -249,6 +249,7 @@ function rateCard(rating) {
if (rating === "forgot") {
// Shift forgotten card to end.
+ card._flagged = true;
window.cards.push(card);
window.cards.splice(window.index, 1);
loadCard(window.cards[window.index]);