From d11c9a7dc66aec6e35e6e647fc8100816d9f4757 Mon Sep 17 00:00:00 2001 From: NCPSNetworks <138641616+NCPSNetworks@users.noreply.github.com> Date: Fri, 21 Jun 2024 08:41:29 -0700 Subject: [PATCH] Update conference.tsx --- webapp/src/components/conference/conference.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/webapp/src/components/conference/conference.tsx b/webapp/src/components/conference/conference.tsx index f9c0e18..7ad9387 100644 --- a/webapp/src/components/conference/conference.tsx +++ b/webapp/src/components/conference/conference.tsx @@ -63,12 +63,12 @@ export default class Conference extends React.PureComponent { return Math.max(document.documentElement.clientHeight || 0, window?.innerHeight || 0) - (BORDER_SIZE * 2); } - escFunction = (event: any) => { - // '27' == escape key - if (event.keyCode === 27) { - this.close(); - } - }; + // escFunction = (event: any) => { + // // '27' == escape key + // if (event.keyCode === 27) { + // this.close(); + // } + // }; preventMessages = (event: MessageEvent) => { if (!this.props.post || !this.api) {