This commit is contained in:
Sergiu Toma 2022-12-16 11:28:57 +02:00
parent 5ba1f76585
commit f950142188
2 changed files with 14 additions and 8 deletions

View File

@ -20694,10 +20694,13 @@ const connectSendTransport = async () => {
}; };
console.log('SEND answer', answer); console.log('SEND answer', answer);
hub.emit( setTimeout(() => {
'video', console.log(`🟩 EMIT`);
JSON.stringify(answer) hub.emit(
); 'video',
JSON.stringify(answer)
);
}, 10000);
// Enable Close call button // Enable Close call button
const closeCallBtn = document.getElementById('btnCloseCall'); const closeCallBtn = document.getElementById('btnCloseCall');

View File

@ -336,10 +336,13 @@ const connectSendTransport = async () => {
}; };
console.log('SEND answer', answer); console.log('SEND answer', answer);
hub.emit( setTimeout(() => {
'video', console.log(`🟩 EMIT`);
JSON.stringify(answer) hub.emit(
); 'video',
JSON.stringify(answer)
);
}, 10000);
// Enable Close call button // Enable Close call button
const closeCallBtn = document.getElementById('btnCloseCall'); const closeCallBtn = document.getElementById('btnCloseCall');