diff --git a/index.html b/index.html
index dee5b7a..fa07473 100644
--- a/index.html
+++ b/index.html
@@ -167,6 +167,10 @@
My archived Instagram
+ Movies I watched
+
+
+ My prefered literature
My prefered entertainment
@@ -332,18 +336,21 @@
const adjustedDate = new Date((new Date()).getTime() - offset * 24 * 60 * 60 * 1000);
const formattedDate = adjustedDate.getFullYear().toString() + "-" + (adjustedDate.getMonth() + 1).toString().padStart(2, "0") + "-" + adjustedDate.getDate().toString().padStart(2, "0");
+ let titleSuffix = ""
if (streakData.length > 0) {
if (streakData.includes(formattedDate)) {
classes.push("bi-circle-fill");
+ titleSuffix = " | Hit";
} else if (offset == 0) {
classes.push("bi-circle-half");
} else {
classes.push("bi-circle");
+ titleSuffix = " | Miss";
}
}
document.getElementById("day-" + offset).classList = classes.join(" ");
- document.getElementById("day-" + offset).title = formattedDate;
+ document.getElementById("day-" + offset).title = formattedDate + titleSuffix;
}
}