You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UIEvents.js 853B

12345678910111213141516171819202122232425262728
  1. var UIEvents = {
  2. NICKNAME_CHANGED: "UI.nickname_changed",
  3. SELECTED_ENDPOINT: "UI.selected_endpoint",
  4. PINNED_ENDPOINT: "UI.pinned_endpoint",
  5. LARGEVIDEO_INIT: "UI.largevideo_init",
  6. /**
  7. * Notifies that local user created text message.
  8. */
  9. MESSAGE_CREATED: "UI.message_created",
  10. /**
  11. * Notifies that local user changed language.
  12. */
  13. LANG_CHANGED: "UI.lang_changed",
  14. /**
  15. * Notifies that local user changed email.
  16. */
  17. EMAIL_CHANGED: "UI.email_changed",
  18. /**
  19. * Notifies that "start muted" settings changed.
  20. */
  21. START_MUTED_CHANGED: "UI.start_muted_changed",
  22. /**
  23. * Notifies interested parties when the film strip (remote video's panel)
  24. * is hidden (toggled) or shown (un-toggled).
  25. */
  26. FILM_STRIP_TOGGLED: "UI.filmstrip_toggled"
  27. };
  28. module.exports = UIEvents;