1234567891011121314151617181920212223242526272829 |
- /**
- * Thresholds for displaying toolbox buttons
- */
- 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' ]
- }
- ];
|