summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
Diffstat (limited to 'www')
-rw-r--r--www/js/calendar.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/calendar.js b/www/js/calendar.js
index 48ba5ef..afc2369 100644
--- a/www/js/calendar.js
+++ b/www/js/calendar.js
@@ -25,7 +25,7 @@ var current_week_offset = 0;
function getLastMonday() {
var d = new Date(clock.getRDTimeMS());
- d.setUTCHours(0, 0, 0, 0);
+ d.setUTCHours(12, 0, 0, 0);
var dow = d.getUTCDay()
if(dow == 0) {
return new Date(d - (6*24*3600000));