Skip to content

Commit

Permalink
removes the log statement
Browse files Browse the repository at this point in the history
oops I forgot to remove the log statement
  • Loading branch information
andOrlando committed Oct 26, 2020
1 parent a575295 commit 8f09ff9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion public/js/clock.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const refreshes_per_second = 4
function redraw_clock_with_timestamp(timestamp) {
if (timestamp > last_interval*1000/refreshes_per_second) {
last_interval++;
console.log(last_interval)
redraw_clock();
}
window.requestAnimationFrame(redraw_clock_with_timestamp);
Expand Down

0 comments on commit 8f09ff9

Please sign in to comment.