* public/v3/pages/domain-control-toolbar.js:
(DomainControlToolbar.prototype.setStartTime):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@194657
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2016-01-06 Ryosuke Niwa <rniwa@webkit.org>
+
+ Commit the forgotten change for r194651.
+
+ * public/v3/pages/domain-control-toolbar.js:
+ (DomainControlToolbar.prototype.setStartTime):
+
2016-01-05 Ryosuke Niwa <rniwa@webkit.org>
The right hand side of main chart appears to be cut off as you zoom out on v3 UI
setStartTime(startTime)
{
- this.setNumberOfDays(Math.max(1, Math.ceil((this._present - startTime) / this._millisecondsPerDay)));
+ this.setNumberOfDays(Math.max(1, Math.round((this._present - startTime) / this._millisecondsPerDay)));
this._startTime = startTime;
}