diff options
author | bobzel <zzzman@gmail.com> | 2022-02-16 10:40:13 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-02-16 10:40:13 -0500 |
commit | a069560e3dd6fa4acf413409d56c5fbb6e9f8808 (patch) | |
tree | 1aa3af089251e8adcb7fdad9304dda462f65ca17 /src/client/views/nodes/DocumentView.tsx | |
parent | 18ce93d480cea51087672649382f92c5462ae085 (diff) |
changed incremental loading to generate update requests more quickly. turned on local browser caching of server responses (eg, images)
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 b537cd370..9450aedb5 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -865,7 +865,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps focus={this.focus} layoutKey={this.finalLayoutKey} /> {(this.isContentActive() && !SnappingManager.GetIsDragging()) || !thumb ? (null) : - <img style={{ background: "white", top: 0, position: "absolute" }} src={thumb + '?d=' + (new Date()).getTime()} + <img style={{ background: "white", top: 0, position: "absolute" }} src={thumb} // + '?d=' + (new Date()).getTime()} width={this.props.PanelWidth()} height={this.props.PanelHeight()} />} {this.layoutDoc.hideAllLinks ? (null) : this.allLinkEndpoints} {this.hideLinkButton || this.props.renderDepth === -1 || SnappingManager.GetIsDragging() ? (null) : |