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/14 17:29:48 UTC

git commit: [flex-examples] [refs/heads/develop] - fix loop on IE? IE seemed to inject additional tags in response

Repository: flex-examples
Updated Branches:
  refs/heads/develop 7d4583e5f -> abdfe786d


fix loop on IE?  IE seemed to inject additional tags in response


Project: http://git-wip-us.apache.org/repos/asf/flex-examples/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-examples/commit/abdfe786
Tree: http://git-wip-us.apache.org/repos/asf/flex-examples/tree/abdfe786
Diff: http://git-wip-us.apache.org/repos/asf/flex-examples/diff/abdfe786

Branch: refs/heads/develop
Commit: abdfe786dd154e34280364d7d16a03b1ccb0c11f
Parents: 7d4583e
Author: Alex Harui <ah...@apache.org>
Authored: Mon Sep 14 08:30:26 2015 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Sep 14 08:30:26 2015 -0700

----------------------------------------------------------------------
 ProductDashboard/src/models/MyModel.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-examples/blob/abdfe786/ProductDashboard/src/models/MyModel.as
----------------------------------------------------------------------
diff --git a/ProductDashboard/src/models/MyModel.as b/ProductDashboard/src/models/MyModel.as
index d5214c1..e0ad511 100644
--- a/ProductDashboard/src/models/MyModel.as
+++ b/ProductDashboard/src/models/MyModel.as
@@ -502,7 +502,7 @@ package models
                         name = name.substr(0, name.length - 1);
                     arr.push(name);
                 }
-                c = s.indexOf("href", c2);
+                c = s.indexOf("href=", c2);
             }
             return arr;
         }