X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=Websites%2Fperf.webkit.org%2Fpublic%2Fv2%2Fapp.js;h=8202a5d78e0dd2c3ea035e0465965c306303310b;hp=a711f8b89ce8a6551a9a126ef63d6a92d7d8dc01;hb=0826c92f4da795ca295c9fe1242402854a8198dc;hpb=efac4fa284fcfb1e7a6d18fb099df3ab6419a165 diff --git a/Websites/perf.webkit.org/public/v2/app.js b/Websites/perf.webkit.org/public/v2/app.js index a711f8b89ce8..8202a5d78e0d 100755 --- a/Websites/perf.webkit.org/public/v2/app.js +++ b/Websites/perf.webkit.org/public/v2/app.js @@ -1072,9 +1072,10 @@ App.PaneController = Ember.ObjectController.extend({ 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'), });