We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b1bb6 commit 8553946Copy full SHA for 8553946
src/ios/CDVWKInAppBrowser.m
@@ -340,6 +340,10 @@ - (void)show:(CDVInvokedUrlCommand*)command withNoAnimate:(BOOL)noAnimate
340
341
- (void)hide:(CDVInvokedUrlCommand*)command
342
{
343
+ // Set tmpWindow to hidden to make main webview responsive to touch again
344
+ // https://stackoverflow.com/questions/4544489/how-to-remove-a-uiwindow
345
+ self->tmpWindow.hidden = YES;
346
+
347
if (self.inAppBrowserViewController == nil) {
348
NSLog(@"Tried to hide IAB after it was closed.");
349
return;
0 commit comments