diff --git a/src/resources/js/app.js b/src/resources/js/app.js index 068addf..a7fe887 100644 --- a/src/resources/js/app.js +++ b/src/resources/js/app.js @@ -71,9 +71,9 @@ const Utils = { if(!end) end = Math.floor(Date.now()/1000); if(end - start > 3600) - return Math.floor((end-start)/3600) + 'hours, ' + Math.floor(((end-start)%3600)/60) + ' minutes'; + return Math.floor((end-start)/3600) + ' hours, ' + Math.floor(((end-start)%3600)/60) + ' minutes'; else if(end - start > 60) - return Math.floor((end-start)/60) + 'minutes, ' + ((end-start)%60) + ' seconds'; + return Math.floor((end-start)/60) + ' minutes, ' + ((end-start)%60) + ' seconds'; else return (end-start) + ' seconds'; }