diff --git a/static/js/app.js b/static/js/app.js index aac90d7..412350c 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -168,7 +168,7 @@ var behaviors = { }).on("slide", function(){ newTime = $(".time-holder .player-slider").slider('getValue').val(); hours = Math.floor(newTime/60/60) - minutes = Math.floor(newTime/60) + minutes = Math.floor(newTime/60)%60 seconds = Math.floor(newTime-(minutes*60)) $(".timeshow").html((hours>0?hours+":":"")+minutes+":"+(seconds<10?"0":"")+seconds) }); @@ -186,7 +186,7 @@ var behaviors = { // And update the time newTime = event.jPlayer.status.currentTime; hours = Math.floor(newTime/60/60) - minutes = Math.floor(newTime/60) + minutes = Math.floor(newTime/60)%60 seconds = Math.floor(newTime-(minutes*60)) $(".timeshow").html((hours>0?hours+":":"")+minutes+":"+(seconds<10?"0":"")+seconds) }