summaryrefslogtreecommitdiff
path: root/www/js/utils.js
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-06-18 23:30:24 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-06-18 23:30:24 (GMT)
commitc735a8aa1c9c8913398af5955664315cf9944e99 (patch)
treed8a0c7f74f2bd2abcfa03a029022b584b075eea4 /www/js/utils.js
parent693c08cc3b86d289f983b1c03fe1fdf02fef8a7d (diff)
added .m4a und .aac to allowed extensions
fixed typos
Diffstat (limited to 'www/js/utils.js')
-rw-r--r--www/js/utils.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/utils.js b/www/js/utils.js
index 0237594..befd08b 100644
--- a/www/js/utils.js
+++ b/www/js/utils.js
@@ -16,7 +16,7 @@ Number.prototype.pad = function(size) {
}
var weekday = new Array(7);
-weekday[0] = "Sonntag";
+weekday[0] = "Sonntag";
weekday[1] = "Montag";
weekday[2] = "Dienstag";
weekday[3] = "Mittwoch";
@@ -48,7 +48,7 @@ function msToTimeString(time) {
time %= 60000;
var s = Number(Math.floor(time / 1000));
var hs = Number(Math.floor((time % 1000)/100));
-
+
return h + ':' + m.pad(2) + ':' + s.pad(2) + '.' + hs;
}