Repository: flex-asjs Updated Branches: refs/heads/develop c37a6de23 -> 0d4a47325
Fixed compiler warning. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/0d4a4732 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/0d4a4732 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/0d4a4732 Branch: refs/heads/develop Commit: 0d4a47325b0caa1a2165ab062cbecf6a22ff8def Parents: c37a6de Author: Peter Ent <[email protected]> Authored: Wed Sep 2 11:27:50 2015 -0400 Committer: Peter Ent <[email protected]> Committed: Wed Sep 2 11:27:50 2015 -0400 ---------------------------------------------------------------------- examples/flexjs/DesktopMap/src/models/MyModel.as | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0d4a4732/examples/flexjs/DesktopMap/src/models/MyModel.as ---------------------------------------------------------------------- diff --git a/examples/flexjs/DesktopMap/src/models/MyModel.as b/examples/flexjs/DesktopMap/src/models/MyModel.as index 406c30c..e0dab68 100644 --- a/examples/flexjs/DesktopMap/src/models/MyModel.as +++ b/examples/flexjs/DesktopMap/src/models/MyModel.as @@ -38,6 +38,8 @@ package models } private var _cities:Array = ["Sydney", "NYC", "Mexico City", "London", "Rio de Janeiro"]; + + [Bindable] public function get cities():Array { return _cities;
