summaryrefslogtreecommitdiff
path: root/js/index.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-05-01 17:40:40 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2016-08-15 19:55:41 +0200
commit9f6c944dc7ab973ab93ee8ed5a432d4942859a45 (patch)
tree9327e71092dbdee75d0605c9b77a510efe776bf7 /js/index.js
parente4cef548ce8a96da18da6bbd9df857ba8d8b9ecd (diff)
downloadwvs-vplan-9f6c944dc7ab973ab93ee8ed5a432d4942859a45.tar.gz
wvs-vplan-9f6c944dc7ab973ab93ee8ed5a432d4942859a45.zip
ändere Verwirrung bei Uhrzeiten und Daten
Diffstat (limited to 'js/index.js')
-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
}
});