aboutsummaryrefslogtreecommitdiff
path: root/src/client/SocketStub.ts
diff options
context:
space:
mode:
authorSam Wilkins <abdullah_ahmed@brown.edu>2019-03-08 00:11:04 -0500
committerSam Wilkins <abdullah_ahmed@brown.edu>2019-03-08 00:11:04 -0500
commitf4a01b9b394a5bdc48e57923567249bb05cb71ff (patch)
treee7e3c26c82c00f0a5b5255932710fdbab4651749 /src/client/SocketStub.ts
parent6ca68333303d97ce35d4118bacdd21f410bdd017 (diff)
Close to refactor
Diffstat (limited to 'src/client/SocketStub.ts')
-rw-r--r--src/client/SocketStub.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/SocketStub.ts b/src/client/SocketStub.ts
index 18df4ca0a..c48f21f63 100644
--- a/src/client/SocketStub.ts
+++ b/src/client/SocketStub.ts
@@ -48,6 +48,7 @@ export class SocketStub {
public static SEND_FIELDS_REQUEST(fieldIds: FieldId[], callback: (fields: { [key: string]: Field }) => any) {
Utils.EmitCallback(Server.Socket, MessageStore.GetFields, fieldIds, (fields: any[]) => {
+ console.log(fieldIds);
let fieldMap: any = {};
for (let field of fields) {
fieldMap[field._id] = ServerUtils.FromJson(field);