Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

constants.js 784B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * Thresholds for displaying toolbox buttons
  3. */
  4. export const THRESHOLDS = [
  5. {
  6. width: 520,
  7. order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants', 'tileview' ]
  8. },
  9. {
  10. width: 470,
  11. order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants' ]
  12. },
  13. {
  14. width: 420,
  15. order: [ 'microphone', 'camera', 'desktop', 'chat', 'participants' ]
  16. },
  17. {
  18. width: 370,
  19. order: [ 'microphone', 'camera', 'chat', 'participants' ]
  20. },
  21. {
  22. width: 320,
  23. order: [ 'microphone', 'camera', 'chat' ]
  24. },
  25. {
  26. width: 270,
  27. order: [ 'microphone', 'camera' ]
  28. }
  29. ];
  30. export const NOT_APPLICABLE = 'N/A';
  31. export const TOOLBAR_TIMEOUT = 4000;