Repository: flex-asjs Updated Branches: refs/heads/develop e75e1f39b -> 5e87cc3db
Fixed ChartExample code so it works in js-release. The code was referencing a non-existing property in the model which the js-debug version tolerated. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/5e87cc3d Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/5e87cc3d Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/5e87cc3d Branch: refs/heads/develop Commit: 5e87cc3db52e1a8572f95959a750157f5bf523a7 Parents: e75e1f3 Author: Peter Ent <[email protected]> Authored: Mon Jan 4 11:44:55 2016 -0500 Committer: Peter Ent <[email protected]> Committed: Mon Jan 4 11:44:55 2016 -0500 ---------------------------------------------------------------------- examples/flexjs/ChartExample/src/MyInitialView.mxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5e87cc3d/examples/flexjs/ChartExample/src/MyInitialView.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/ChartExample/src/MyInitialView.mxml b/examples/flexjs/ChartExample/src/MyInitialView.mxml index f83b059..6f0175e 100644 --- a/examples/flexjs/ChartExample/src/MyInitialView.mxml +++ b/examples/flexjs/ChartExample/src/MyInitialView.mxml @@ -277,7 +277,7 @@ limitations under the License. <js:beads> <js:ConstantBinding sourceID="applicationModel" - sourcePropertyName="wave" + sourcePropertyName="wave1" destinationPropertyName="dataProvider" /> <js:HorizontalLinearAxisBead valueField="x" /> <js:VerticalLinearAxisBead valueField="sin" minimum="-1" maximum="1" />
