From eec55744078381f5b48d757362343ad94e9cb133 Mon Sep 17 00:00:00 2001 From: "rniwa@webkit.org" Date: Thu, 20 Nov 2014 04:28:37 +0000 Subject: [PATCH] Fix typos in r176203. * public/v2/app.js: (App.ChartsController.actions.addPaneByMetricAndPlatform): (App.AnalysisTaskRoute): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@176378 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Websites/perf.webkit.org/ChangeLog | 8 ++++++++ Websites/perf.webkit.org/public/v2/app.js | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Websites/perf.webkit.org/ChangeLog b/Websites/perf.webkit.org/ChangeLog index e29a4bf060b3..3e5680fa4f70 100644 --- a/Websites/perf.webkit.org/ChangeLog +++ b/Websites/perf.webkit.org/ChangeLog @@ -1,3 +1,11 @@ +2014-11-19 Ryosuke Niwa + + Fix typos in r176203. + + * public/v2/app.js: + (App.ChartsController.actions.addPaneByMetricAndPlatform): + (App.AnalysisTaskRoute): + 2014-11-18 Ryosuke Niwa Unreviewed. Updated the install instruction. diff --git a/Websites/perf.webkit.org/public/v2/app.js b/Websites/perf.webkit.org/public/v2/app.js index febc43436ff2..8948f2c71d6c 100755 --- a/Websites/perf.webkit.org/public/v2/app.js +++ b/Websites/perf.webkit.org/public/v2/app.js @@ -566,7 +566,7 @@ App.ChartsController = Ember.Controller.extend({ addPaneByMetricAndPlatform: function (param) { this.addPane(App.Pane.create({ - store, this.store, + store: this.store, platformId: param.platform.get('id'), metricId: param.metric.get('id'), showingDetails: false @@ -1598,7 +1598,7 @@ App.AnalysisRoute = Ember.Route.extend({ App.AnalysisTaskRoute = Ember.Route.extend({ model: function (param) { - return store.find('analysisTask', param.taskId).then(function (task) { + return this.store.find('analysisTask', param.taskId).then(function (task) { return App.AnalysisTaskViewModel.create({content: task, store: store}); }); }, -- 2.36.0