aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/Page.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-08-07 08:01:00 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-08-07 08:01:00 -0400
commitd906398528e6ab35bb1b8d9c36de61027380afd9 (patch)
tree41b5288bb6eed757bc067a122ed878bad4a9258e /src/client/views/pdf/Page.tsx
parent913055f1b6f8eac88eda2ba08715c9cc3b013f08 (diff)
fixed typo. moved fields to annotation data doc
Diffstat (limited to 'src/client/views/pdf/Page.tsx')
-rw-r--r--src/client/views/pdf/Page.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/pdf/Page.tsx b/src/client/views/pdf/Page.tsx
index a1f807f13..a15bed255 100644
--- a/src/client/views/pdf/Page.tsx
+++ b/src/client/views/pdf/Page.tsx
@@ -88,7 +88,6 @@ export default class Page extends React.Component<IPageProps> {
highlight = (targetDoc: Doc | undefined, color: string) => {
// creates annotation documents for current highlights
let annotationDoc = this.props.makeAnnotationDocuments(targetDoc, scale, color, false);
- Doc.GetProto(annotationDoc).annotationOn = this.props.Document;
Doc.AddDocToList(this.props.fieldExtensionDoc, "annotations", annotationDoc);
return annotationDoc;
}