summaryrefslogtreecommitdiffstats
path: root/js/timetable.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/timetable.js')
-rw-r--r--js/timetable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/timetable.js b/js/timetable.js
index 0f85f24..40d1d52 100644
--- a/js/timetable.js
+++ b/js/timetable.js
@@ -80,7 +80,7 @@ function getDateString(date) {
function getLastMonday(date_object) {
if (date_object.getDay() === 0) {
- date_object.setDate(asdf.getDate() - 6);
+ date_object.setDate(date_object.getDate() - 6);
} else {
date_object.setDate(date_object.getDate() - date_object.getDay() + 1);
}