git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
New perf dashboard should provide UI to create a new analysis task
[WebKit-https.git]
/
Websites
/
perf.webkit.org
/
public
/
v2
/
data.js
diff --git
a/Websites/perf.webkit.org/public/v2/data.js
b/Websites/perf.webkit.org/public/v2/data.js
index e50387a26933e201cc58acc0d961a70752fa7d9c..059de42d9abc5e9a551995706731391fc53109f0 100755
(executable)
--- a/
Websites/perf.webkit.org/public/v2/data.js
+++ b/
Websites/perf.webkit.org/public/v2/data.js
@@
-423,3
+423,10
@@
TimeSeries.prototype.previousPoint = function (point)
return null;
return this._series[point.seriesIndex - 1];
}
+
+TimeSeries.prototype.nextPoint = function (point)
+{
+ if (!point.seriesIndex)
+ return null;
+ return this._series[point.seriesIndex + 1];
+}