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 2015/12/18 20:21:19 UTC

git commit: [flex-asjs] [refs/heads/develop] - Changed to js namespace from basic namespace.

Repository: flex-asjs
Updated Branches:
  refs/heads/develop b02859ac4 -> 59afc8b91


Changed to js namespace from basic namespace.


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

Branch: refs/heads/develop
Commit: 59afc8b911903d455cae26cdc257fd899e317bdc
Parents: b02859a
Author: Peter Ent <pe...@apache.org>
Authored: Fri Dec 18 14:21:10 2015 -0500
Committer: Peter Ent <pe...@apache.org>
Committed: Fri Dec 18 14:21:10 2015 -0500

----------------------------------------------------------------------
 .../flexjs/MobileTrader/src/MyInitialView.mxml  | 58 ++++++++++----------
 1 file changed, 29 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/59afc8b9/examples/flexjs/MobileTrader/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MobileTrader/src/MyInitialView.mxml b/examples/flexjs/MobileTrader/src/MyInitialView.mxml
index cc99946..323e5b6 100755
--- a/examples/flexjs/MobileTrader/src/MyInitialView.mxml
+++ b/examples/flexjs/MobileTrader/src/MyInitialView.mxml
@@ -17,9 +17,9 @@ See the License for the specific language governing permissions and
 limitations under the License.
 
 -->
-<basic:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009"
+<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009"
 				xmlns:local="*"
-				xmlns:basic="library://ns.apache.org/flexjs/basic"
+				xmlns:js="library://ns.apache.org/flexjs/basic"
 				xmlns:views="views.*" 
 				xmlns:apache="org.apache.flex.html.beads.*"
 				xmlns:html="org.apache.flex.html.*"
@@ -27,21 +27,21 @@ limitations under the License.
 				initComplete="onInitComplete()" xmlns:models="models.*" >
 	
 	<fx:Style>
-		@namespace basic  "library://ns.apache.org/flexjs/basic";
+		@namespace js  "library://ns.apache.org/flexjs/basic";
 		@namespace views  "views.*";
 		
-		basic|Container {
+		js|Container {
 			background-color: #FFFFFF;
 		}
 		
-		basic|StackedViewManager {
+		js|StackedViewManager {
 			padding-top: 0px;
 			padding-bottom: 0px;
 			padding-left: 0px;
 			padding-right: 0px;
 		}
 		
-		basic|TabbedViewManager {
+		js|TabbedViewManager {
 			position : absolute ;
 			height : 100% ;
 			width : 100% ;
@@ -223,34 +223,34 @@ limitations under the License.
 		]]>
 	</fx:Script>
 	
-	<basic:beads>
-		<basic:ViewBaseDataBinding />
-	</basic:beads>
+	<js:beads>
+		<js:ViewBaseDataBinding />
+	</js:beads>
 	
-	<basic:TabbedViewManager id="navController" width="100%" height="100%" x="0" y="0" viewChanged="tabbedViewChanged(event)">
-		<basic:navigationBarItems>
-			<basic:TextButton id="backButton" width="45" height="45" className="BackButton" visible="false" click="goBack(event)">
-				<basic:beads>
+	<js:TabbedViewManager id="navController" width="100%" height="100%" x="0" y="0" viewChanged="tabbedViewChanged(event)">
+		<js:navigationBarItems>
+			<js:TextButton id="backButton" width="45" height="45" className="BackButton" visible="false" click="goBack(event)">
+				<js:beads>
 					<apache:ImageButtonView />
-				</basic:beads>
-			</basic:TextButton>
-			<basic:Image source="assets/logo.png" width="218" height="55" />
-		</basic:navigationBarItems>
-		<basic:views>
-			<basic:StackedViewManager title="Assets">
-				<basic:views>
+				</js:beads>
+			</js:TextButton>
+			<js:Image source="assets/logo.png" width="218" height="55" />
+		</js:navigationBarItems>
+		<js:views>
+			<js:StackedViewManager title="Assets">
+				<js:views>
 					<views:AssetsView id="assetsView" title="Assets" next="onAssetsNext()" />
-				</basic:views>
-			</basic:StackedViewManager>
+				</js:views>
+			</js:StackedViewManager>
 			
-			<basic:StackedViewManager id="watchListStack" title="Watch List" viewChanged="watchListStackChanged(event)">
-				<basic:views>
+			<js:StackedViewManager id="watchListStack" title="Watch List" viewChanged="watchListStackChanged(event)">
+				<js:views>
 					<views:WatchListView id="watchListView" dataModel="{applicationModel}"/>
-				</basic:views>
-			</basic:StackedViewManager>
+				</js:views>
+			</js:StackedViewManager>
 			
 			<views:AlertsView id="alertsView" title="Alerts" dataModel="{applicationModel}" />
-		</basic:views>
-	</basic:TabbedViewManager>
+		</js:views>
+	</js:TabbedViewManager>
 	
-</basic:ViewBase>
+</js:ViewBase>