aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/ImageBox.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2020-01-22 18:21:05 -0500
committerbob <bcz@cs.brown.edu>2020-01-22 18:21:05 -0500
commit3d11941ebaac312bc72186af05f0a7969a39d7be (patch)
treefabd1c4321f1b5ae4cb385e805786d9177322c1b /src/client/views/nodes/ImageBox.tsx
parentbfebed91e12abca324d7a638adeb1da9755a9057 (diff)
slight improvement maybe to createDocExtension and scraper to use prefetch proxy
Diffstat (limited to 'src/client/views/nodes/ImageBox.tsx')
-rw-r--r--src/client/views/nodes/ImageBox.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx
index 5f407fd3a..db427710e 100644
--- a/src/client/views/nodes/ImageBox.tsx
+++ b/src/client/views/nodes/ImageBox.tsx
@@ -209,7 +209,7 @@ export class ImageBox extends DocAnnotatableComponent<FieldViewProps, ImageDocum
@action onError = () => {
const timeout = this._curSuffix === "_s" ? this._smallRetryCount : this._curSuffix === "_m" ? this._mediumRetryCount : this._largeRetryCount;
if (timeout < 10) {
- setTimeout(this.retryPath, Math.min(10000, timeout * 5));
+ // setTimeout(this.retryPath, 500);
}
}
_curSuffix = "_m";