You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/09/16 02:36:32 UTC

git commit: [flex-examples] [refs/heads/develop] - no need for this

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 <ah...@apache.org>
Authored: Tue Sep 15 17:37:15 2015 -0700
Committer: Alex Harui <ah...@apache.org>
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();
         }