|
@@ -274,18 +274,6 @@ export default {
|
|
this.$set(cont, "self", true);
|
|
this.$set(cont, "self", true);
|
|
this.cameraWorkingConfirmed = true;
|
|
this.cameraWorkingConfirmed = true;
|
|
|
|
|
|
- this.$socket.emit('meetingJoined',
|
|
|
|
- {
|
|
|
|
- lobby_uid: this.lobbyProp.uid,
|
|
|
|
- meeting_name: this.meetingName,
|
|
|
|
- meeting_uid: this.meetingUid,
|
|
|
|
- user: {
|
|
|
|
- name: `${this.firstName} ${this.lastName}`,
|
|
|
|
- type: 'STRANGER',
|
|
|
|
- uid: 'someuid' //TODO:
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
-
|
|
|
|
if(this.stepper == 3){
|
|
if(this.stepper == 3){
|
|
this.gotoStep3()
|
|
this.gotoStep3()
|
|
}
|
|
}
|
|
@@ -314,7 +302,19 @@ export default {
|
|
cont.el = $(`#${cont.id}`)[0];
|
|
cont.el = $(`#${cont.id}`)[0];
|
|
cont.el.appendChild(cont.obj.element);
|
|
cont.el.appendChild(cont.obj.element);
|
|
this.getToken();
|
|
this.getToken();
|
|
- });
|
|
|
|
|
|
+
|
|
|
|
+ this.$socket.emit('meetingJoined',
|
|
|
|
+ {
|
|
|
|
+ lobby_uid: this.lobbyProp.uid,
|
|
|
|
+ meeting_name: this.meetingName,
|
|
|
|
+ meeting_uid: this.meetingUid,
|
|
|
|
+ user: {
|
|
|
|
+ name: `${this.firstName} ${this.lastName}`,
|
|
|
|
+ type: 'STRANGER',
|
|
|
|
+ uid: 'someuid' //TODO:
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
},
|
|
},
|
|
/* Copied */
|
|
/* Copied */
|
|
disconnect() {
|
|
disconnect() {
|