X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4cc06fc092836d96eb52ac12c691f1baa41f04b3..14ec0cc12d68e7f15fe3f3bb03c1ecfd06d0e6c3:/src/wolnelektury/static/js/contrib/jplayer/jquery.jplayer.js?ds=sidebyside diff --git a/src/wolnelektury/static/js/contrib/jplayer/jquery.jplayer.js b/src/wolnelektury/static/js/contrib/jplayer/jquery.jplayer.js index 2bd9316b5..0ab3569ea 100644 --- a/src/wolnelektury/static/js/contrib/jplayer/jquery.jplayer.js +++ b/src/wolnelektury/static/js/contrib/jplayer/jquery.jplayer.js @@ -212,7 +212,7 @@ s = (s && typeof s === 'number') ? s : 0; var myTime = new Date(s * 1000), - hour = myTime.getUTCHours() + (myTime.getDate() - 1) * 24, + hour = myTime.getUTCHours() + (myTime.getUTCDate() - 1) * 24, min = this.options.timeFormat.showHour ? myTime.getUTCMinutes() : myTime.getUTCMinutes() + hour * 60, sec = this.options.timeFormat.showMin ? myTime.getUTCSeconds() : myTime.getUTCSeconds() + min * 60, strHour = (this.options.timeFormat.padHour && hour < 10) ? "0" + hour : hour,