Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

constants.js 828B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // @flow
  2. export const CHAT_VIEW_MODAL_ID = 'chatView';
  3. /**
  4. * The size of the chat.
  5. */
  6. export const CHAT_SIZE = 315;
  7. /**
  8. * The audio ID of the audio element for which the {@link playAudio} action is
  9. * triggered when new chat message is received.
  10. *
  11. * @type {string}
  12. */
  13. export const INCOMING_MSG_SOUND_ID = 'INCOMING_MSG_SOUND';
  14. /**
  15. * The {@code messageType} of error (system) messages.
  16. */
  17. export const MESSAGE_TYPE_ERROR = 'error';
  18. /**
  19. * The {@code messageType} of local messages.
  20. */
  21. export const MESSAGE_TYPE_LOCAL = 'local';
  22. /**
  23. * The {@code messageType} of remote messages.
  24. */
  25. export const MESSAGE_TYPE_REMOTE = 'remote';
  26. export const SMALL_WIDTH_THRESHOLD = 580;
  27. /**
  28. * The modes of the buttons of the chat and polls tabs.
  29. */
  30. export const BUTTON_MODES = {
  31. CONTAINED: 'contained',
  32. TEXT: 'text'
  33. };