Title: [176378] trunk/Websites/perf.webkit.org
Revision
176378
Author
[email protected]
Date
2014-11-19 20:28:37 -0800 (Wed, 19 Nov 2014)

Log Message

Fix typos in r176203.

* public/v2/app.js:
(App.ChartsController.actions.addPaneByMetricAndPlatform):
(App.AnalysisTaskRoute):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (176377 => 176378)


--- trunk/Websites/perf.webkit.org/ChangeLog	2014-11-20 04:27:19 UTC (rev 176377)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2014-11-20 04:28:37 UTC (rev 176378)
@@ -1,3 +1,11 @@
+2014-11-19  Ryosuke Niwa  <[email protected]>
+
+        Fix typos in r176203.
+
+        * public/v2/app.js:
+        (App.ChartsController.actions.addPaneByMetricAndPlatform):
+        (App.AnalysisTaskRoute):
+
 2014-11-18  Ryosuke Niwa  <[email protected]>
 
         Unreviewed. Updated the install instruction.

Modified: trunk/Websites/perf.webkit.org/public/v2/app.js (176377 => 176378)


--- trunk/Websites/perf.webkit.org/public/v2/app.js	2014-11-20 04:27:19 UTC (rev 176377)
+++ trunk/Websites/perf.webkit.org/public/v2/app.js	2014-11-20 04:28:37 UTC (rev 176378)
@@ -566,7 +566,7 @@
         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.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});
         });
     },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to