diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-07-17 00:06:59 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-07-17 00:06:59 -0400 |
commit | 60819bced2eb67282b77e25c77939dd45d01e7d8 (patch) | |
tree | 81fd9be05f0cb1dab4cf4676b658e7dedbc703fa /src/client/views/nodes/PDFBox.tsx | |
parent | ce36d85ed2088de8fa3a92460942e34b750fdde8 (diff) |
fixed pdf runtime errors. fixed link lines to redraw durin animations.
Diffstat (limited to 'src/client/views/nodes/PDFBox.tsx')
-rw-r--r-- | src/client/views/nodes/PDFBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/PDFBox.tsx b/src/client/views/nodes/PDFBox.tsx index 1c5825a8f..323da1233 100644 --- a/src/client/views/nodes/PDFBox.tsx +++ b/src/client/views/nodes/PDFBox.tsx @@ -268,7 +268,7 @@ export class PDFBox extends ViewBoxAnnotatableComponent<FieldViewProps, PdfDocum if (!this._pdfjsRequested) { this._pdfjsRequested = true; const promise = Pdfjs.getDocument(pdfUrl.url.href).promise; - promise.then(action(pdf => { this._pdf = pdf; console.log("promise"); })); + promise.then(action(pdf => this._pdf = pdf)); } } |