Created
August 16, 2010 20:03
-
-
Save awd/527630 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <mx:Module | |
| xmlns:mx="http://www.adobe.com/2006/mxml" | |
| xmlns:s="library://ns.adobe.com/flex/spark" | |
| xmlns:views="com.woople.admin.ui.views.*" | |
| xmlns:maps="com.woople.admin.maps.*" | |
| xmlns:c="com.woople.shared.ui.controls.*" | |
| width="100%" height="100%" | |
| minWidth="972" minHeight="484"> | |
| <mx:Script> | |
| <![CDATA[ | |
| import mx.modules.ModuleLoader; | |
| import mx.events.ResizeEvent; | |
| import mx.core.IFlexDisplayObject; | |
| import mx.core.FlexGlobals; | |
| import mx.managers.PopUpManager; | |
| import mx.events.FlexEvent; | |
| ]]> | |
| </mx:Script> | |
| <!-- Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> | |
| <mx:Style source="/../../../assets/css/Main.css" /> | |
| <mx:Style source="/../../../assets/css/Admin.css" /> | |
| <!-- Maps ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> | |
| <maps:AdminMap dispatcher="{ this }" /> | |
| <!-- UI ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> | |
| <c:ModuleSectionStack | |
| title="@Resource(key='accountAdministrator', bundle='woople')" | |
| id="adminModule" | |
| width="100%" height="100%"> | |
| </c:ModuleSectionStack> | |
| </mx:Module> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment