summaryrefslogtreecommitdiff
path: root/www/js/clock.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/clock.js')
-rw-r--r--www/js/clock.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/www/js/clock.js b/www/js/clock.js
index ecad643..a11ad87 100644
--- a/www/js/clock.js
+++ b/www/js/clock.js
@@ -53,7 +53,7 @@ function Clock() {
this.last_message = msg;
this.clock_offset = ((msg.t2 - msg.t1) + (msg.t3 - msg.t4)) / 2;
this.clock_rtt = (msg.t4 - msg.t1) - (msg.t3 - msg.t2);
- console.log('got new ntp message from rhrdtime (rtt=' + this.clock_rtt + ' ms): new offset = ' + this.clock_offset + ' ms');
+# console.log('got new ntp message from rhrdtime (rtt=' + this.clock_rtt + ' ms): new offset = ' + this.clock_offset + ' ms');
}
this.ntp_request = function() {
@@ -61,7 +61,7 @@ function Clock() {
}
this.sock_onopen = function() {
- console.log('clock websocket connection established');
+# console.log('clock websocket connection established');
this.state = 'CONNECTED';
this.ntp_request();
this.interval_request = setInterval(this.ntp_request.bind(this), 2000);
@@ -71,7 +71,7 @@ function Clock() {
if(this.state == 'STOPPED') {
delete this.sock;
} else {
- console.log('clock websocket closed with code ' + event.code + ', trying reconnect...');
+# console.log('clock websocket closed with code ' + event.code + ', trying reconnect...');
clearInterval(this.interval_request);
delete this.interval_request;
this.sock.close();
@@ -134,4 +134,4 @@ function drawClock(date, time, week) {
default:
weekspan.addClass('label-inverse').text('Fehler');
}
-} \ No newline at end of file
+}