Move audio/video controls out to bottom of screen if on mobile
This commit is contained in:
@@ -2,6 +2,7 @@ const initialState =
|
||||
{
|
||||
id : null,
|
||||
picture : null,
|
||||
isMobile : false,
|
||||
canSendMic : false,
|
||||
canSendWebcam : false,
|
||||
canShareScreen : false,
|
||||
@@ -36,6 +37,11 @@ const me = (state = initialState, action) =>
|
||||
};
|
||||
}
|
||||
|
||||
case 'SET_IS_MOBILE':
|
||||
{
|
||||
return { ...state, isMobile: true };
|
||||
}
|
||||
|
||||
case 'LOGGED_IN':
|
||||
{
|
||||
const { flag } = action.payload;
|
||||
|
||||
Reference in New Issue
Block a user