diff options
-rw-r--r-- | src/lib/rrdFlot.js | 2 |
1 files changed, 1 insertions, 1 deletions
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])));
|