| 
				
			 | 
			
			
				
				@@ -5,6 +5,7 @@ import { NOTIFY_CAMERA_ERROR, NOTIFY_MIC_ERROR } from '../base/devices'; 
			 | 
		
		
	
		
			
			| 
				5
			 | 
			
				5
			 | 
			
			
				
				 import { JitsiConferenceErrors } from '../base/lib-jitsi-meet'; 
			 | 
		
		
	
		
			
			| 
				6
			 | 
			
				6
			 | 
			
			
				
				 import { MiddlewareRegistry } from '../base/redux'; 
			 | 
		
		
	
		
			
			| 
				7
			 | 
			
				7
			 | 
			
			
				
				 import { SUBMIT_FEEDBACK } from '../feedback'; 
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				8
			 | 
			
			
				
				+import { SET_FILMSTRIP_VISIBLE } from '../filmstrip'; 
			 | 
		
		
	
		
			
			| 
				8
			 | 
			
				9
			 | 
			
			
				
				  
			 | 
		
		
	
		
			
			| 
				9
			 | 
			
				10
			 | 
			
			
				
				 declare var APP: Object; 
			 | 
		
		
	
		
			
			| 
				10
			 | 
			
				11
			 | 
			
			
				
				  
			 | 
		
		
	
	
		
			
			| 
				
			 | 
			
			
				
				@@ -36,6 +37,10 @@ MiddlewareRegistry.register((/* store */) => next => action => { 
			 | 
		
		
	
		
			
			| 
				36
			 | 
			
				37
			 | 
			
			
				
				         } 
			 | 
		
		
	
		
			
			| 
				37
			 | 
			
				38
			 | 
			
			
				
				         break; 
			 | 
		
		
	
		
			
			| 
				38
			 | 
			
				39
			 | 
			
			
				
				  
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				40
			 | 
			
			
				
				+    case SET_FILMSTRIP_VISIBLE: 
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				41
			 | 
			
			
				
				+        APP.API.notifyFilmstripDisplayChanged(action.visible); 
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				42
			 | 
			
			
				
				+        break; 
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				43
			 | 
			
			
				
				+ 
			 | 
		
		
	
		
			
			| 
				39
			 | 
			
				44
			 | 
			
			
				
				     case SUBMIT_FEEDBACK: 
			 | 
		
		
	
		
			
			| 
				40
			 | 
			
				45
			 | 
			
			
				
				         APP.API.notifyFeedbackSubmitted(); 
			 | 
		
		
	
		
			
			| 
				41
			 | 
			
				46
			 | 
			
			
				
				         break; 
			 |