Prechádzať zdrojové kódy

avoid deleting existing classes when muting time elements

and make muting work for negative values
Adam Spiers 8 rokov pred
rodič
commit
1eada3b360
1 zmenil súbory, kde vykonal 12 pridanie a 2 odobranie
  1. 12 2
      plugin/notes/notes.html

+ 12 - 2
plugin/notes/notes.html

@@ -468,9 +468,19 @@
 						var minutes = Math.floor( ( time / ( 1000 * 60 ) ) % 60 );
 						var seconds = Math.floor( ( time / 1000 ) % 60 );
 						hrEl.innerHTML = zeroPadInteger( hours );
-						hrEl.className = hours > 0 ? '' : 'mute';
+						if (hours == 0) {
+							hrEl.classList.add( 'mute' );
+						}
+						else {
+							hrEl.classList.remove( 'mute' );
+						}
 						minEl.innerHTML = ':' + zeroPadInteger( minutes );
-						minEl.className = (hours > 0 || minutes > 0) ? '' : 'mute';
+						if (hours == 0 && minutes == 0) {
+							minEl.classList.add( 'mute' );
+						}
+						else {
+							minEl.classList.remove( 'mute' );
+						}
 						secEl.innerHTML = ':' + zeroPadInteger( seconds );
 					}