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

don't mute minutes when hours is unmuted

parent 89b0c5a8
No related branches found
No related tags found
No related merge requests found
......@@ -470,7 +470,7 @@
hrEl.innerHTML = zeroPadInteger( hours );
hrEl.className = hours > 0 ? '' : 'mute';
minEl.innerHTML = ':' + zeroPadInteger( minutes );
minEl.className = minutes > 0 ? '' : 'mute';
minEl.className = (hours > 0 || minutes > 0) ? '' : 'mute';
secEl.innerHTML = ':' + zeroPadInteger( seconds );
}
......
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