Show
Ignore:
Timestamp:
05/15/08 18:55:18 (8 months ago)
Author:
silver
Message:
 
Location:
trunk/buddypub/bpclientflex/src
Files:
3 added
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/buddypub/bpclientflex/src/modules/earthplayer.mxml

    r156 r158  
    11<?xml version="1.0" encoding="utf-8"?> 
    22<mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"  
    3         backgroundColor="#ABABAB" percentWidth="100" percentHeight="100" > 
     3        percentWidth="100" percentHeight="100" > 
    44        <mx:Script> 
    55                <![CDATA[ 
  • trunk/buddypub/bpclientflex/src/org/cnflex/buddypub/mvc/control/InteractionController.as

    r100 r158  
    2727        import mx.utils.URLUtil; 
    2828         
     29        import org.cnflex.buddypub.util.ModuleConfig; 
     30         
    2931        public class InteractionController extends ModelGlueController 
    3032        {        
     
    3436               
    3537        public function InteractionController():void{   
     38                 
    3639                //initialize deep link configuration 
    3740            browserManager = BrowserManager.getInstance();   
    3841            browserManager.addEventListener(BrowserChangeEvent.BROWSER_URL_CHANGE, parseURL);   
    3942            browserManager.init("", "Home");   
     43             
     44            //initialize the module configuration 
     45            var moduleConfig:ModuleConfig = ModuleConfig.getInstance();  
     46                         
    4047        }   
    4148