diff options
-rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 2 | ||||
-rw-r--r-- | src/client/views/nodes/WebBox.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index 190193351..972b60123 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -287,7 +287,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps, VideoD 'onReady': this.props.dontRegisterView ? undefined : onYoutubePlayerReady, 'onStateChange': this.props.dontRegisterView ? undefined : onYoutubePlayerStateChange, } - }) + }); }); } private get uIButtons() { diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx index 8a8f46963..1e5e8133d 100644 --- a/src/client/views/nodes/WebBox.tsx +++ b/src/client/views/nodes/WebBox.tsx @@ -158,7 +158,7 @@ export class WebBox extends ViewBoxAnnotatableComponent<FieldViewProps, WebDocum this._forceSmoothScrollUpdate = false; this.layoutDoc._scrollLeft = scrollLeft; } - })) + })); } } iframeScroll = (e: any) => { |