+2014-11-19 Ryosuke Niwa <rniwa@webkit.org>
+
+ Fix typos in r176203.
+
+ * public/v2/app.js:
+ (App.ChartsController.actions.addPaneByMetricAndPlatform):
+ (App.AnalysisTaskRoute):
+
2014-11-18 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed. Updated the install instruction.
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
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});
});
},