2021-07-08 13:42:07 +00:00
|
|
|
/**
|
2021-11-04 21:10:43 +00:00
|
|
|
* Thresholds for displaying toolbox buttons.
|
2021-07-08 13:42:07 +00:00
|
|
|
*/
|
|
|
|
export const THRESHOLDS = [
|
|
|
|
{
|
|
|
|
width: 520,
|
|
|
|
order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants', 'tileview' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
width: 470,
|
|
|
|
order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
width: 420,
|
|
|
|
order: [ 'microphone', 'camera', 'desktop', 'chat', 'participants' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
width: 370,
|
|
|
|
order: [ 'microphone', 'camera', 'chat', 'participants' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
width: 320,
|
|
|
|
order: [ 'microphone', 'camera', 'chat' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
width: 270,
|
|
|
|
order: [ 'microphone', 'camera' ]
|
|
|
|
}
|
|
|
|
];
|
2021-07-22 12:26:56 +00:00
|
|
|
|
|
|
|
export const NOT_APPLICABLE = 'N/A';
|
2021-09-23 14:39:05 +00:00
|
|
|
|
|
|
|
export const TOOLBAR_TIMEOUT = 4000;
|