diff --git a/www/app.js b/www/app.js index 7e0d995..18f694e 100644 --- a/www/app.js +++ b/www/app.js @@ -264,6 +264,13 @@ const App = Vue.createApp({ setStyle(key, value) { document.documentElement.style.setProperty(key, value); }, + onCallFeedback(e) { + try { + if (cabin) { + cabin.event(e.target.getAttribute("data-cabin-event")); + } + } catch (e) {} + }, exit() { signalingSocket.close(); for (let peer_id in peers) { diff --git a/www/index.html b/www/index.html index 39f3665..ddbed66 100755 --- a/www/index.html +++ b/www/index.html @@ -75,9 +75,9 @@