* public/v2/interactive-chart.js:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@179623
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2015-02-04 Ryosuke Niwa <rniwa@webkit.org>
+ Unreviewed build fix after r179611.
+
+ * public/v2/interactive-chart.js:
+
+2015-02-04 Ryosuke Niwa <rniwa@webkit.org>
+
Perf dashboard doesn’t show the right unit for Safari UI tests
https://bugs.webkit.org/show_bug.cgi?id=141238
}
}.observes('selectedItem').on('init'),
_highlightedItemsChanged: function () {
- if (!this._clippedContainer)
- return;
-
var highlightedItems = this.get('highlightedItems');
+ if (!this._clippedContainer || !highlightedItems)
+ return;
+
var data = this._currentTimeSeriesData.filter(function (item) { return highlightedItems[item.measurement.id()]; });
if (this._highlights)