diff options
author | andrewdkim <adkim414@gmail.com> | 2019-11-10 16:23:00 -0500 |
---|---|---|
committer | andrewdkim <adkim414@gmail.com> | 2019-11-10 16:23:00 -0500 |
commit | 40c40d377ec169b44e1a9691129e5c7a6b0b10e4 (patch) | |
tree | 79b66cbef825fc26b4144e6b209e226ed7175195 /src/client/views/nodes/DocumentView.tsx | |
parent | 76bc6041ddbbda7ba4c1560199acc08324648e99 (diff) |
messages changed to only room instead of server broadcast!
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 54a687c34..e76a83e5e 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -579,7 +579,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu render() { if (!this.props.Document) return (null); - trace(); + // trace(); const animDims = this.Document.animateToDimensions ? Array.from(this.Document.animateToDimensions) : undefined; const ruleColor = this.props.ruleProvider ? StrCast(this.props.ruleProvider["ruleColor_" + this.Document.heading]) : undefined; const ruleRounding = this.props.ruleProvider ? StrCast(this.props.ruleProvider["ruleRounding_" + this.Document.heading]) : undefined; |