From 2c7e3cc2de0481bfe74540a1deafb5a7a6b9738c Mon Sep 17 00:00:00 2001 From: Igor Sfiligoi Date: Wed, 12 Sep 2012 18:04:28 +0000 Subject: Default timezone had wrong sign --- src/lib/rrdFlot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/rrdFlot.js b/src/lib/rrdFlot.js index 4379c03..bafb18b 100644 --- a/src/lib/rrdFlot.js +++ b/src/lib/rrdFlot.js @@ -213,7 +213,7 @@ rrdFlot.prototype.createHTML = function() { // the passed timezone does not make sense // find the local time var d= new Date(); - true_tz=Math.ceil(d.getTimezoneOffset()/60); + true_tz=-Math.ceil(d.getTimezoneOffset()/60); } for(var j=0; j<24; j++) { timezone.appendChild(new Option(timezones[j],timezones[j],true_tz==Math.ceil(timezones[j]))); -- cgit v1.2.3