fixes #343
parent
2623ef2eaa
commit
b3764a1d64
|
|
@ -400,6 +400,7 @@ const Me = (props) =>
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<Tooltip title={micTip} placement='left'>
|
<Tooltip title={micTip} placement='left'>
|
||||||
{ smallContainer ?
|
{ smallContainer ?
|
||||||
|
<div>
|
||||||
<IconButton
|
<IconButton
|
||||||
aria-label={intl.formatMessage({
|
aria-label={intl.formatMessage({
|
||||||
id : 'device.muteAudio',
|
id : 'device.muteAudio',
|
||||||
|
|
@ -425,7 +426,9 @@ const Me = (props) =>
|
||||||
<MicOffIcon />
|
<MicOffIcon />
|
||||||
}
|
}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
</div>
|
||||||
:
|
:
|
||||||
|
<div>
|
||||||
<Fab
|
<Fab
|
||||||
aria-label={intl.formatMessage({
|
aria-label={intl.formatMessage({
|
||||||
id : 'device.muteAudio',
|
id : 'device.muteAudio',
|
||||||
|
|
@ -451,10 +454,12 @@ const Me = (props) =>
|
||||||
<MicOffIcon />
|
<MicOffIcon />
|
||||||
}
|
}
|
||||||
</Fab>
|
</Fab>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
<Tooltip title={webcamTip} placement='left'>
|
<Tooltip title={webcamTip} placement='left'>
|
||||||
{ smallContainer ?
|
{ smallContainer ?
|
||||||
|
<div>
|
||||||
<IconButton
|
<IconButton
|
||||||
aria-label={intl.formatMessage({
|
aria-label={intl.formatMessage({
|
||||||
id : 'device.startVideo',
|
id : 'device.startVideo',
|
||||||
|
|
@ -477,7 +482,9 @@ const Me = (props) =>
|
||||||
<VideoOffIcon />
|
<VideoOffIcon />
|
||||||
}
|
}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
</div>
|
||||||
:
|
:
|
||||||
|
<div>
|
||||||
<Fab
|
<Fab
|
||||||
aria-label={intl.formatMessage({
|
aria-label={intl.formatMessage({
|
||||||
id : 'device.startVideo',
|
id : 'device.startVideo',
|
||||||
|
|
@ -500,11 +507,13 @@ const Me = (props) =>
|
||||||
<VideoOffIcon />
|
<VideoOffIcon />
|
||||||
}
|
}
|
||||||
</Fab>
|
</Fab>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
{ me.browser.platform !== 'mobile' &&
|
{ me.browser.platform !== 'mobile' &&
|
||||||
<Tooltip title={screenTip} placement='left'>
|
<Tooltip title={screenTip} placement='left'>
|
||||||
{ smallContainer ?
|
{ smallContainer ?
|
||||||
|
<div>
|
||||||
<IconButton
|
<IconButton
|
||||||
aria-label={intl.formatMessage({
|
aria-label={intl.formatMessage({
|
||||||
id : 'device.startScreenSharing',
|
id : 'device.startScreenSharing',
|
||||||
|
|
@ -547,7 +556,9 @@ const Me = (props) =>
|
||||||
}
|
}
|
||||||
|
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
</div>
|
||||||
:
|
:
|
||||||
|
<div>
|
||||||
<Fab
|
<Fab
|
||||||
aria-label={intl.formatMessage({
|
aria-label={intl.formatMessage({
|
||||||
id : 'device.startScreenSharing',
|
id : 'device.startScreenSharing',
|
||||||
|
|
@ -589,6 +600,7 @@ const Me = (props) =>
|
||||||
<ScreenIcon/>
|
<ScreenIcon/>
|
||||||
}
|
}
|
||||||
</Fab>
|
</Fab>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
}
|
}
|
||||||
|
|
@ -692,6 +704,7 @@ const Me = (props) =>
|
||||||
>
|
>
|
||||||
<Tooltip title={webcamTip} placement='left'>
|
<Tooltip title={webcamTip} placement='left'>
|
||||||
{ smallContainer ?
|
{ smallContainer ?
|
||||||
|
<div>
|
||||||
<IconButton
|
<IconButton
|
||||||
aria-label={intl.formatMessage({
|
aria-label={intl.formatMessage({
|
||||||
id : 'device.stopVideo',
|
id : 'device.stopVideo',
|
||||||
|
|
@ -709,7 +722,9 @@ const Me = (props) =>
|
||||||
<VideoIcon />
|
<VideoIcon />
|
||||||
|
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
</div>
|
||||||
:
|
:
|
||||||
|
<div>
|
||||||
<Fab
|
<Fab
|
||||||
aria-label={intl.formatMessage({
|
aria-label={intl.formatMessage({
|
||||||
id : 'device.stopVideo',
|
id : 'device.stopVideo',
|
||||||
|
|
@ -725,6 +740,7 @@ const Me = (props) =>
|
||||||
>
|
>
|
||||||
<VideoIcon />
|
<VideoIcon />
|
||||||
</Fab>
|
</Fab>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue