summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/index.js b/js/index.js
index e7d81d6..9ea46ce 100644
--- a/js/index.js
+++ b/js/index.js
@@ -169,7 +169,7 @@ function addNotification(vdate, msg, $div){
location.href = '#' + div; // TODO hoffentlich funktioniert das auch immer...
}
- console.log('Benachrichtigung hinzugefügt: ' + vdate.format('DD.MM. hh:mm') + '; ' + msg);
+ console.log('Benachrichtigung hinzugefügt: ' + vdate.format('DD.MM. HH:mm') + '; ' + msg);
}
}
@@ -373,8 +373,8 @@ function renderPage($div, pdf, pageNumber, callback){
vdate.set('hour', time[0]);
vdate.set('minute', time[1]);
- addNotification(vdate, vertretungen.join('\n'), $div);
addSocialButton(vdate, vertretungen.join(', '), $div);
+ addNotification(vdate, vertretungen.join('\n'), $div); //FIXME addNotification ändert vdate
}
});