diff options
author | bob <bcz@cs.brown.edu> | 2019-03-19 15:50:54 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-03-19 15:50:54 -0400 |
commit | 5e416c352ebfb875482f890c6362fee5f84af1f6 (patch) | |
tree | ebae4c0750c2da9194c8a5ed34c0855b4dfaa6a9 /src/client/Server.ts | |
parent | 4126d3b15d8a93004df4e6eefe485c9f1fb86a00 (diff) |
started to integrate Northstar. changed server port to 4321.
Diffstat (limited to 'src/client/Server.ts')
-rw-r--r-- | src/client/Server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/Server.ts b/src/client/Server.ts index 3fb1ae878..bbdc27397 100644 --- a/src/client/Server.ts +++ b/src/client/Server.ts @@ -9,7 +9,7 @@ import { MessageStore, Types } from "./../server/Message"; export class Server { public static ClientFieldsCached: ObservableMap<FieldId, Field | FIELD_WAITING> = new ObservableMap(); - static Socket: SocketIOClient.Socket = OpenSocket(`${window.location.protocol}//${window.location.hostname}:1234`); + static Socket: SocketIOClient.Socket = OpenSocket(`${window.location.protocol}//${window.location.hostname}:4321`); static GUID: string = Utils.GenerateGuid() |