aboutsummaryrefslogtreecommitdiff
path: root/src/client/DocServer.ts
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-05-23 03:24:03 -0400
committerTyler Schicke <tyler_schicke@brown.edu>2019-05-23 03:24:03 -0400
commite90059327d8910f46b9f2fb48716eb9267a060b5 (patch)
tree4912c6eaa682b38d01d12e37e22dc3874f2d751f /src/client/DocServer.ts
parent999f5ad95498a772aeed9ca84cf176d101efd946 (diff)
Revert "Enabled https"
This reverts commit 05771afc1687f18bd645991d9a853637cc85e16f.
Diffstat (limited to 'src/client/DocServer.ts')
-rw-r--r--src/client/DocServer.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/DocServer.ts b/src/client/DocServer.ts
index b1b5ae529..cbcf751ee 100644
--- a/src/client/DocServer.ts
+++ b/src/client/DocServer.ts
@@ -8,7 +8,7 @@ import { Id, HandleUpdate } from '../new_fields/FieldSymbols';
export namespace DocServer {
const _cache: { [id: string]: RefField | Promise<Opt<RefField>> } = {};
- const _socket = OpenSocket(`${window.location.origin}`);
+ const _socket = OpenSocket(`${window.location.protocol}//${window.location.hostname}:4321`);
const GUID: string = Utils.GenerateGuid();
export function makeReadOnly() {