https://bugs.webkit.org/show_bug.cgi?id=143466
Reviewed by Chris Dumez.
Address kling's in-person comment to notify users when the new run status is saved in the database.
* public/v2/app.js:
(App.PaneController._selectedItemIsMarkedOutlierDidChange)
* public/v2/chart-pane.css: Fixed a typo.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@182514
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-04-07 Ryosuke Niwa <rniwa@webkit.org>
+
+ Perf dashboard should have a way of marking outliers
+ https://bugs.webkit.org/show_bug.cgi?id=143466
+
+ Reviewed by Chris Dumez.
+
+ Address kling's in-person comment to notify users when the new run status is saved in the database.
+
+ * public/v2/app.js:
+ (App.PaneController._selectedItemIsMarkedOutlierDidChange)
+ * public/v2/chart-pane.css: Fixed a typo.
+
2015-04-07 Ryosuke Niwa <rniwa@webkit.org>
Perf dashboard should have a way of marking outliers
return;
var pane = this.get('model');
selectedMeasurement.setMarkedOutlier(!!selectedItemIsMarkedOutlier).then(function () {
+ alert(selectedItemIsMarkedOutlier ? 'Marked the point as an outlier' : 'The point is no longer marked as an outlier');
pane.refetchRuns();
}, function (error) {
- alert(error);
+ alert('Failed to update the status:' + error);
});
}.observes('selectedItemIsMarkedOutlier'),
});
}
.stat-pane,
-.annotation-pane {
+.analysis-pane {
right: 2.6rem;
padding: 0;
}