aboutsummaryrefslogtreecommitdiff
path: root/src/client/DocServer.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-06-24 09:30:40 -0400
committerbobzel <zzzman@gmail.com>2022-06-24 09:30:40 -0400
commit9c1f0a7d394affe955fb3f422647784b5bdd32b6 (patch)
tree38141a5fe4d2ecb236913e695bfb2948a6c2718e /src/client/DocServer.ts
parentc230b687f467c20613f411795afffcfa55989042 (diff)
fixed highlighting readonly mode. simplified away some async stuff on load.
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 dbc4783d8..c9a30b8e3 100644
--- a/src/client/DocServer.ts
+++ b/src/client/DocServer.ts
@@ -180,7 +180,7 @@ export namespace DocServer {
_isReadOnly = true;
_CreateField = field => _cache[field[Id]] = field;
_UpdateField = emptyFunction;
- _RespondToUpdate = emptyFunction;
+ _RespondToUpdate = emptyFunction; // bcz: option: don't clear RespondToUpdate to continue to receive updates as others change the DB
}
}