From e63626e16f2c9bd6e8d74fd9200c01446c675c09 Mon Sep 17 00:00:00 2001 From: krasmuss Date: Thu, 21 Oct 2021 13:02:03 +0200 Subject: [PATCH] (ios) Fixes #566 Prevents closing pagesheet by swiping down, which led to unresponsive app --- src/ios/CDVWKInAppBrowser.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ios/CDVWKInAppBrowser.m b/src/ios/CDVWKInAppBrowser.m index 2adcf0c1b..09151d796 100644 --- a/src/ios/CDVWKInAppBrowser.m +++ b/src/ios/CDVWKInAppBrowser.m @@ -713,6 +713,8 @@ - (id)initWithBrowserOptions: (CDVInAppBrowserOptions*) browserOptions andSettin [self.webViewUIDelegate setViewController:self]; [self createViews]; + + self.modalInPopover = TRUE; } return self;