* public/v2/app.js:
(set get App.Pane.Ember.Object.extend):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@179881
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-02-10 Ryosuke Niwa <rniwa@webkit.org>
+
+ Unreviewed build fix.
+
+ * public/v2/app.js:
+ (set get App.Pane.Ember.Object.extend):
+
2015-02-10 Ryosuke Niwa <rniwa@webkit.org>
New perf dashboard should have the ability to overlay moving average with an envelope
if (!chosenStrategy)
return null;
- for (var i = 0; i < chosenStrategy.parameters.length; i++)
- chosenStrategy.parameters[i] = parseFloat(config[i + 1]);
+ if (chosenStrategy.parameterList) {
+ for (var i = 0; i < chosenStrategy.parameterList.length; i++)
+ chosenStrategy.parameterList[i].value = parseFloat(config[i + 1]);
+ }
return chosenStrategy;
},