summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-08-02 22:15:26 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-08-02 22:15:26 (GMT)
commit5a3b14483b992969f7f9f1d5fe59b008b20db2c9 (patch)
tree7ac4f887414847d187303df2ab11da1970371024
parent460c3b22716f89937df410a9dea705b1d9b72736 (diff)
javascript comments are not starting with # - i will never again push changes before checking if the code actually works
-rw-r--r--www/js/clock.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/clock.js b/www/js/clock.js
index a11ad87..a28e6d5 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();