Skip to content

Commit

Permalink
Remove 15 and 45 times
Browse files Browse the repository at this point in the history
  • Loading branch information
hufman committed Nov 4, 2012
1 parent 02562d1 commit d87f9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clock.js
Expand Up @@ -325,7 +325,7 @@ var PatFleet = {
myDate.setMilliseconds(0);
var seconds = myDate.getSeconds();
var newseconds = 0;
var roundups = [10, 15, 20, 30, 40, 45, 50, 60]; // what seconds we'll actually speak
var roundups = [10, 20, 30, 40, 50, 60]; // what seconds we'll actually speak
for (var i = roundups.length - 1; i >= 0; i--) {
if (seconds<roundups[i])
newseconds = roundups[i];
Expand Down

0 comments on commit d87f9db

Please sign in to comment.