15 lines
419 B
JavaScript
15 lines
419 B
JavaScript
var DesktopSharingEventTypes = {
|
|
INIT: "ds.init",
|
|
|
|
SWITCHING_DONE: "ds.switching_done",
|
|
|
|
NEW_STREAM_CREATED: "ds.new_stream_created",
|
|
|
|
/**
|
|
* An event which indicates that the jidesha extension for Firefox is
|
|
* needed to proceed with screen sharing, and that it is not installed.
|
|
*/
|
|
FIREFOX_EXTENSION_NEEDED: "ds.firefox_extension_needed"
|
|
};
|
|
|
|
module.exports = DesktopSharingEventTypes; |