Changeset 9644 for branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Scripts/jqPlot/plugins
- Timestamp:
- 06/19/13 12:50:42 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Scripts/jqPlot/plugins/jqplot.dateAxisRenderer.js
r9617 r9644 340 340 // ticks must be in order of increasing value. 341 341 342 min = ((this.min != null) ? new $.jsDate(this.min).getTime() : db.min);343 max = ((this.max != null) ? new $.jsDate(this.max).getTime() : db.max);342 min = new $.jsDate((this.min != null) ? this.min : db.min).getTime(); 343 max = new $.jsDate((this.max != null) ? this.max : db.max).getTime(); 344 344 345 345 // see if we're zooming. if we are, don't use the min and max we're given, … … 448 448 min = Math.floor(min/tempti) * tempti; 449 449 min = new $.jsDate(min); 450 min = min.getTime() + min.getUtcOffset();450 min = min.getTime(); 451 451 452 452 nttarget = Math.ceil((max - min) / tempti) + 1;
Note: See TracChangeset
for help on using the changeset viewer.