]> git.r.bdr.sh - rbdr/junction/blobdiff - extension/junction.js
New url
[rbdr/junction] / extension / junction.js
index 2dbff7895b0cf1d6722b63098f294cfe09901b83..f1a4361491d69c837b38f10f92b379eb3f54a1c7 100644 (file)
@@ -40,22 +40,29 @@ const internals = {
 
     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.