aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/webcam
diff options
context:
space:
mode:
authoranika-ahluwalia <anika.ahluwalia@gmail.com>2020-06-07 13:14:30 -0500
committeranika-ahluwalia <anika.ahluwalia@gmail.com>2020-06-07 13:14:30 -0500
commit16ea6fac3dc786b80c934284a6b6079dd60da084 (patch)
treeefc2672c0101b737fa051a86e2a428a8df19da57 /src/client/views/webcam
parent6c9a18d8ec385255aa0175c23aed9f9a006ad060 (diff)
parent3e7cc70f7588c738c34de1d087e1d53b9410d9fe (diff)
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into script_documents
Diffstat (limited to 'src/client/views/webcam')
-rw-r--r--src/client/views/webcam/WebCamLogic.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/views/webcam/WebCamLogic.js b/src/client/views/webcam/WebCamLogic.js
index a8a2f5fa4..5f6202bc8 100644
--- a/src/client/views/webcam/WebCamLogic.js
+++ b/src/client/views/webcam/WebCamLogic.js
@@ -1,8 +1,5 @@
'use strict';
import io from "socket.io-client";
-import {
- resolvedPorts
-} from "../Main";
var socket;
var isChannelReady = false;
@@ -32,7 +29,7 @@ export function initialize(roomName, handlerUI) {
room = roomName;
- socket = io.connect(`${window.location.protocol}//${window.location.hostname}:${resolvedPorts.socket}`);
+ socket = io.connect(`${window.location.protocol}//${window.location.hostname}:4321`);
if (room !== '') {
socket.emit('create or join', room);