Not blink separator dots for digital clocks - #2026

This commit is contained in:
enriquecd 2018-03-08 11:58:31 +01:00
parent ff8051b433
commit 97bcaec720
1 changed files with 1 additions and 1 deletions

View File

@ -2334,7 +2334,7 @@ var digitPattern = [
digit.select("path:nth-child(5)").classed("lit", function(d) { return digitPattern[4][d]; });
digit.select("path:nth-child(6)").classed("lit", function(d) { return digitPattern[5][d]; });
digit.select("path:nth-child(7)").classed("lit", function(d) { return digitPattern[6][d]; });
separator.classed("lit", seconds & 1);
separator.classed("lit", seconds);
setTimeout(tick, 1000 - now % 1000);
})();