You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2017/05/17 18:55:26 UTC

git commit: [flex-asjs] [refs/heads/release0.8.0] - Fix to get DesktopMap to run on AIR again.

Repository: flex-asjs
Updated Branches:
  refs/heads/release0.8.0 57d3155a8 -> 0d637b8d2


Fix to get DesktopMap to run on AIR again.


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

Branch: refs/heads/release0.8.0
Commit: 0d637b8d23d26fe00b3be96c6fd3d075951701ad
Parents: 57d3155
Author: Peter Ent <pe...@apache.org>
Authored: Wed May 17 14:55:27 2017 -0400
Committer: Peter Ent <pe...@apache.org>
Committed: Wed May 17 14:55:27 2017 -0400

----------------------------------------------------------------------
 examples/flexjs/DesktopMap/build.xml                      | 10 ++++++++++
 .../flexjs/DesktopMap/src/main/flex/MyInitialView.mxml    |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0d637b8d/examples/flexjs/DesktopMap/build.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DesktopMap/build.xml b/examples/flexjs/DesktopMap/build.xml
index b790bfe..9530e14 100644
--- a/examples/flexjs/DesktopMap/build.xml
+++ b/examples/flexjs/DesktopMap/build.xml
@@ -53,6 +53,16 @@
     <include file="${basedir}/../../build_example.xml" />
 
     <target name="main" depends="clean,build_example.compile" description="Clean build of ${example}">
+    	 <copy todir="${basedir}/bin-debug" >
+            <fileset dir="${basedir}">
+                <include name="*-app.xml" />
+            </fileset>
+        </copy>
+        <copy todir="${basedir}/bin-release" >
+            <fileset dir="${basedir}">
+                <include name="*-app.xml" />
+            </fileset>
+        </copy>
     </target>
     
     <target name="clean">

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0d637b8d/examples/flexjs/DesktopMap/src/main/flex/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DesktopMap/src/main/flex/MyInitialView.mxml b/examples/flexjs/DesktopMap/src/main/flex/MyInitialView.mxml
index fdaa025..df08437 100644
--- a/examples/flexjs/DesktopMap/src/main/flex/MyInitialView.mxml
+++ b/examples/flexjs/DesktopMap/src/main/flex/MyInitialView.mxml
@@ -135,7 +135,7 @@ limitations under the License.
 		<local:NoLayout />
 	</js:beads>
 	
-	<js:Panel title="Map" width="50%" height="600" className="MapPanel">
+	<js:Panel title="Map" width="500" height="600" className="MapPanel">
 		<js:beads>
 			<js:VerticalFlexLayout />
 		</js:beads>