Skip to content
Snippets Groups Projects
Commit 933eba87 authored by Adam Spiers's avatar Adam Spiers
Browse files

round decreasing timers to mirror increasing timers

parent 1eada3b3
No related branches found
No related tags found
No related merge requests found
......@@ -464,9 +464,10 @@
secondsEl = timeEl.querySelector( '.seconds-value' );
function _displayTime( hrEl, minEl, secEl, time) {
var hours = Math.floor( time / ( 1000 * 60 * 60 ) );
var minutes = Math.floor( ( time / ( 1000 * 60 ) ) % 60 );
var seconds = Math.floor( ( time / 1000 ) % 60 );
time = Math.round(time / 1000);
var seconds = time % 60;
var minutes = ( time / 60 ) % 60 ;
var hours = time / ( 60 * 60 ) ;
hrEl.innerHTML = zeroPadInteger( hours );
if (hours == 0) {
hrEl.classList.add( 'mute' );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment