Repository: flex-examples Updated Branches: refs/heads/develop dacebe5ab -> 62c9e522f
no need for this Project: http://git-wip-us.apache.org/repos/asf/flex-examples/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-examples/commit/62c9e522 Tree: http://git-wip-us.apache.org/repos/asf/flex-examples/tree/62c9e522 Diff: http://git-wip-us.apache.org/repos/asf/flex-examples/diff/62c9e522 Branch: refs/heads/develop Commit: 62c9e522f891649bfb0bcad599129587d47140b6 Parents: dacebe5 Author: Alex Harui <[email protected]> Authored: Tue Sep 15 17:37:15 2015 -0700 Committer: Alex Harui <[email protected]> Committed: Tue Sep 15 17:37:15 2015 -0700 ---------------------------------------------------------------------- ProductDashboard/src/models/MyModel.as | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-examples/blob/62c9e522/ProductDashboard/src/models/MyModel.as ---------------------------------------------------------------------- diff --git a/ProductDashboard/src/models/MyModel.as b/ProductDashboard/src/models/MyModel.as index ebbe306..ac88187 100644 --- a/ProductDashboard/src/models/MyModel.as +++ b/ProductDashboard/src/models/MyModel.as @@ -570,10 +570,7 @@ package models private function getPeopleData():void { - if (peopleURL.indexOf("http") == -1) - peopleService.url = peopleURL + "index.html"; - else - peopleService.url = peopleURL; + peopleService.url = peopleURL; peopleService.addEventListener("complete", peopleCompleteHandler); peopleService.send(); }
