Repository: flex-asjs Updated Branches: refs/heads/develop a1776a4ab -> c37a6de23
Removed bindable 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/c37a6de2 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/c37a6de2 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/c37a6de2 Branch: refs/heads/develop Commit: c37a6de2318fe48e3b8cf1eeaf0070dfc7f01360 Parents: a1776a4 Author: Peter Ent <[email protected]> Authored: Wed Sep 2 10:12:28 2015 -0400 Committer: Peter Ent <[email protected]> Committed: Wed Sep 2 10:12:28 2015 -0400 ---------------------------------------------------------------------- examples/flexjs/MapSearch/src/models/MyModel.as | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/c37a6de2/examples/flexjs/MapSearch/src/models/MyModel.as ---------------------------------------------------------------------- diff --git a/examples/flexjs/MapSearch/src/models/MyModel.as b/examples/flexjs/MapSearch/src/models/MyModel.as index 528da95..8a1e8fd 100644 --- a/examples/flexjs/MapSearch/src/models/MyModel.as +++ b/examples/flexjs/MapSearch/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;
