+ 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('removePeer', function() {
+ this.peers--;
+ console.log(`There are now ${this.peers} participants`);
+ });
+
+ console.log(activeTabs[0].url); // placeholder while we connect backend.
+ internals.createAudioElement(internals.getRoot().runtime.getURL('sounds/tada.wav'));