diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-07-18 03:45:22 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-07-18 03:45:22 (GMT) |
commit | 794e5b4833b2a0663a683efff3a6e0fbc1e669cc (patch) | |
tree | 1f70569790e4efe883e63204a72a6ab906113a9f | |
parent | f69bc7a36dbbd2c3c0526f901df145ac36e1e87d (diff) |
fixed variable mixup at clock
-rw-r--r-- | www/js/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/utils.js b/www/js/utils.js index cc0b657..b219977 100644 --- a/www/js/utils.js +++ b/www/js/utils.js @@ -159,7 +159,7 @@ function Clock(draw_callback) { this.sock_onopen = function() { this.ntp_request(); - this.interval_redraw = setInterval(this.ntp_request.bind(this), 5000); + this.interval_request = setInterval(this.ntp_request.bind(this), 5000); } this.start = function() { |