| 
				
			 | 
			
			
				@@ -29,6 +29,7 @@ function startSingleScreenApp(params) { 
			 | 
		
	
		
			
			| 
				29
			 | 
			
				29
			 | 
			
			
				   params.appStyle = convertStyleParams(params.appStyle); 
			 | 
		
	
		
			
			| 
				30
			 | 
			
				30
			 | 
			
			
				   params.sideMenu = convertDrawerParamsToSideMenuParams(params.drawer); 
			 | 
		
	
		
			
			| 
				31
			 | 
			
				31
			 | 
			
			
				   params.overrideBackPress = screen.overrideBackPress; 
			 | 
		
	
		
			
			| 
				
			 | 
			
				32
			 | 
			
			
				+  params.animateShow = convertAnimationType(params.animationType); 
			 | 
		
	
		
			
			| 
				32
			 | 
			
				33
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				33
			 | 
			
				34
			 | 
			
			
				   newPlatformSpecific.startApp(params); 
			 | 
		
	
		
			
			| 
				34
			 | 
			
				35
			 | 
			
			
				 } 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -193,6 +194,7 @@ function startTabBasedApp(params) { 
			 | 
		
	
		
			
			| 
				193
			 | 
			
				194
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				194
			 | 
			
				195
			 | 
			
			
				   params.appStyle = convertStyleParams(params.appStyle); 
			 | 
		
	
		
			
			| 
				195
			 | 
			
				196
			 | 
			
			
				   params.sideMenu = convertDrawerParamsToSideMenuParams(params.drawer); 
			 | 
		
	
		
			
			| 
				
			 | 
			
				197
			 | 
			
			
				+  params.animateShow = convertAnimationType(params.animationType); 
			 | 
		
	
		
			
			| 
				196
			 | 
			
				198
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				197
			 | 
			
				199
			 | 
			
			
				   newPlatformSpecific.startApp(params); 
			 | 
		
	
		
			
			| 
				198
			 | 
			
				200
			 | 
			
			
				 } 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -210,6 +212,10 @@ function addTabIcon(tab) { 
			 | 
		
	
		
			
			| 
				210
			 | 
			
				212
			 | 
			
			
				   } 
			 | 
		
	
		
			
			| 
				211
			 | 
			
				213
			 | 
			
			
				 } 
			 | 
		
	
		
			
			| 
				212
			 | 
			
				214
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				
			 | 
			
				215
			 | 
			
			
				+function convertAnimationType(animationType) { 
			 | 
		
	
		
			
			| 
				
			 | 
			
				216
			 | 
			
			
				+  return animationType !== 'none'; 
			 | 
		
	
		
			
			| 
				
			 | 
			
				217
			 | 
			
			
				+} 
			 | 
		
	
		
			
			| 
				
			 | 
			
				218
			 | 
			
			
				+ 
			 | 
		
	
		
			
			| 
				213
			 | 
			
				219
			 | 
			
			
				 function navigatorSetButtons(navigator, navigatorEventID, params) { 
			 | 
		
	
		
			
			| 
				214
			 | 
			
				220
			 | 
			
			
				   if (params.rightButtons) { 
			 | 
		
	
		
			
			| 
				215
			 | 
			
				221
			 | 
			
			
				     params.rightButtons.forEach(function(button) { 
			 |