aboutsummaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
authorrknol <rknol@MacBook-Pro-2.fritz.box>2020-09-27 20:27:01 +0200
committerrknol <rknol@MacBook-Pro-2.fritz.box>2020-09-27 20:27:01 +0200
commitc3fafc92b16013c658c6efd2240f27252a00f860 (patch)
treea86dcd2b89c5aea99fb5f7f01618cf7a66b8b532 /extension
parent44d7c8891d37679c33689b5d4a24c783b8d7fc84 (diff)
Fixes
Diffstat (limited to 'extension')
-rw-r--r--extension/junction.js19
1 files changed, 13 insertions, 6 deletions
diff --git a/extension/junction.js b/extension/junction.js
index 2dbff78..73befa2 100644
--- a/extension/junction.js
+++ b/extension/junction.js
@@ -35,27 +35,34 @@ const internals = {
internals.setIcon('hangUp');
const activeTabs = await internals.getActiveTabs();
- const socketUrl = 'http://unlimited.pizza:8000/';
+ const socketUrl = 'http://localhost:8000/';
const currentUrl = activeTabs[0].url;
this.socket = io(socketUrl);
+ var that = this;
+
this.socket.on('connect', function() {
console.log("Connected to signaling server");
+
+ that.socket.emit('join', {
+ 'url': currentUrl,
+ });
});
this.socket.on('disconnect', function() {
console.log("disconnected from signaling server");
});
- this.socket.on('addPeer', function() {
- this.peers++;
- console.log(`There are now ${this.peers} participants`);
+ this.socket.on('addPeer', function(data) {
+ console.log(data);
+ that.peers++;
+ console.log(`There are now ${that.peers} participants`);
});
this.socket.on('removePeer', function() {
- this.peers--;
- console.log(`There are now ${this.peers} participants`);
+ that.peers--;
+ console.log(`There are now ${that.peers} participants`);
});
console.log(activeTabs[0].url); // placeholder while we connect backend.