Attempt to fix reference error.

master
Stefan Kuehnel 2020-05-24 18:49:30 +02:00
parent 42bb0e418e
commit 29170c9abe
1 changed files with 2 additions and 6 deletions

View File

@ -8,12 +8,12 @@ const rowHeight = height / 4;
var show_date = false; var show_date = false;
var show_time = false; var show_time = false;
var yy = 0;
rowlights = []; rowlights = [];
time_digit = []; time_digit = [];
function drawBerlinClock() { function drawBerlinClock() {
try {
g.clear(); g.clear();
var now = new Date(); var now = new Date();
@ -71,10 +71,6 @@ function drawBerlinClock() {
} }
} }
} }
} catch (e) {
console.log(e)
console.trace()
}
} }
function toggleDate() { function toggleDate() {