您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Constants.js 571B

1234567891011121314151617181920212223
  1. /**
  2. * The value for the "var" attribute of feature tag in disco-info packets.
  3. */
  4. export const DISCO_REMOTE_CONTROL_FEATURE
  5. = "http://jitsi.org/meet/remotecontrol";
  6. /**
  7. * Types of remote-control-event events.
  8. */
  9. export const EVENT_TYPES = {
  10. mousemove: "mousemove",
  11. mousedown: "mousedown",
  12. mouseup: "mouseup",
  13. mousedblclick: "mousedblclick",
  14. mousescroll: "mousescroll",
  15. keydown: "keydown",
  16. keyup: "keyup"
  17. };
  18. /**
  19. * The type of remote control events sent trough the API module.
  20. */
  21. export const API_EVENT_TYPE = "remote-control-event";