-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V3 group calls #1125
V3 group calls #1125
Conversation
7ff1480
to
5deb277
Compare
app/script/calling/CallingService.js
Outdated
constructor(client) { | ||
this.logger = new z.util.Logger('z.calling.CallingService', z.config.LOGGER.OPTIONS); | ||
this.client = client; | ||
return this; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove return this
*/ | ||
_create_session_id() { | ||
return new Array(E_CALL_MESSAGE_CONFIG.SESSION_ID_LENGTH) | ||
.map(function() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
single line?
app/script/calling/entities/EFlow.js
Outdated
window.z.calling.entities = z.calling.entities || {}; | ||
|
||
const E_FLOW_CONFIG = { | ||
DATA_CHANNEL_LABEL: 'calling-3.0', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these const leak into the global space. so either add a closure or make them static
3e026a2
to
31f8b91
Compare
430c33a
to
9aeea1a
Compare
6eaaa9b
to
780cc80
Compare
780cc80
to
d5988b4
Compare
No description provided.