From: rniwa@webkit.org Date: Fri, 7 Nov 2014 23:51:38 +0000 (+0000) Subject: Fix typos in r175768. X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=36599ea54c5ae6cce9a39e4b1fbc3622d09222f2 Fix typos in r175768. * public/v2/app.js: (App.AnalysisTaskViewModel.roots): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@175769 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Websites/perf.webkit.org/ChangeLog b/Websites/perf.webkit.org/ChangeLog index ef9282d..232a33a 100644 --- a/Websites/perf.webkit.org/ChangeLog +++ b/Websites/perf.webkit.org/ChangeLog @@ -1,5 +1,12 @@ 2014-11-07 Ryosuke Niwa + Fix typos in r175768. + + * public/v2/app.js: + (App.AnalysisTaskViewModel.roots): + +2014-11-07 Ryosuke Niwa + Introduce the concept of analysis task to perf dashboard https://bugs.webkit.org/show_bug.cgi?id=138517 diff --git a/Websites/perf.webkit.org/public/v2/app.js b/Websites/perf.webkit.org/public/v2/app.js index b51fb29..46d0a1d 100755 --- a/Websites/perf.webkit.org/public/v2/app.js +++ b/Websites/perf.webkit.org/public/v2/app.js @@ -1671,7 +1671,7 @@ App.AnalysisTaskViewModel = Ember.ObjectProxy.extend({ }); }.observes('testSets.@each.selection'), - _updateRoots: function () + roots: function () { var analysisPoints = this.get('analysisPoints'); if (!analysisPoints) @@ -1705,6 +1705,6 @@ App.AnalysisTaskViewModel = Ember.ObjectProxy.extend({ ], })); } - return rooots; + return roots; }.property('analysisPoints'), });