You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pi...@apache.org on 2017/07/31 22:31:27 UTC

[06/50] [abbrv] git commit: [flex-asjs] [refs/heads/feature/amf] - Fixed ContainerTest

Fixed ContainerTest


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

Branch: refs/heads/feature/amf
Commit: dc00fcb45dd30d8715cefa05ce4e7fb710c904c6
Parents: f012cfa
Author: Harbs <ha...@in-tools.com>
Authored: Sun Jul 23 11:19:43 2017 +0300
Committer: Harbs <ha...@in-tools.com>
Committed: Sun Jul 23 11:19:43 2017 +0300

----------------------------------------------------------------------
 manualtests/ContainerTest/build.xml                           | 3 ++-
 manualtests/ContainerTest/src/products/ProductItemRenderer.as | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/dc00fcb4/manualtests/ContainerTest/build.xml
----------------------------------------------------------------------
diff --git a/manualtests/ContainerTest/build.xml b/manualtests/ContainerTest/build.xml
index 1b3a266..c39c049 100644
--- a/manualtests/ContainerTest/build.xml
+++ b/manualtests/ContainerTest/build.xml
@@ -22,7 +22,8 @@
 <project name="containertest" default="main" basedir=".">
     <property name="FLEXJS_HOME" location="../.."/>
     <property name="example" value="ContainerTest" />
-    
+    <property name="swf.version" value="11" />
+        
     <property file="${FLEXJS_HOME}/env.properties"/>
     <property environment="env"/>
     <property file="${FLEXJS_HOME}/build.properties"/>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/dc00fcb4/manualtests/ContainerTest/src/products/ProductItemRenderer.as
----------------------------------------------------------------------
diff --git a/manualtests/ContainerTest/src/products/ProductItemRenderer.as b/manualtests/ContainerTest/src/products/ProductItemRenderer.as
index 5cb47c9..8546db8 100644
--- a/manualtests/ContainerTest/src/products/ProductItemRenderer.as
+++ b/manualtests/ContainerTest/src/products/ProductItemRenderer.as
@@ -57,7 +57,7 @@ package products
 		{
 			super.data = value;
 			
-			image.url = data.image;
+			image.src = data.image;
 			title.text = data.title;
 			detail.text = data.detail;
 		}