diff options
author | bobzel <zzzman@gmail.com> | 2023-08-18 16:12:53 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-08-18 16:12:53 -0400 |
commit | 37f7ce414cc5b6fa366b6c906100dd6fb90ba25f (patch) | |
tree | d1c6864f2f0c5df652e508ad0df886bbd5ca7943 | |
parent | 9dfca50488241998fa1a99f660b12f43ad803d38 (diff) |
fixed field name errors.
-rw-r--r-- | src/client/views/MarqueeAnnotator.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/MarqueeAnnotator.tsx b/src/client/views/MarqueeAnnotator.tsx index 4aabb83dc..3d8d569fa 100644 --- a/src/client/views/MarqueeAnnotator.tsx +++ b/src/client/views/MarqueeAnnotator.tsx @@ -167,9 +167,9 @@ export class MarqueeAnnotator extends React.Component<MarqueeAnnotatorProps> { annotationOn: this.props.rootDoc, text: this.props.selectionText(), backgroundColor: 'transparent', - presDuration: 2100, - presTransition: 500, - presZoomText: true, + presentation_duration: 2100, + presentation_transition: 500, + presentation_zoomText: true, title: 'Selection on ' + this.props.rootDoc.title, }); let minX = Number.MAX_VALUE; |