Move window hiding to 'browserExit'
Fixes close, hide and toolbar 'done' and makes cordova window responsive
This commit is contained in:
parent
4376ddabcd
commit
79b1bb61a0
@ -81,10 +81,6 @@ static CDVWKInAppBrowser* instance = nil;
|
||||
return;
|
||||
}
|
||||
|
||||
// Set tmpWindow to hidden to make main webview responsive to touch again
|
||||
// https://stackoverflow.com/questions/4544489/how-to-remove-a-uiwindow
|
||||
self->tmpWindow.hidden = YES;
|
||||
|
||||
// Things are cleaned up in browserExit.
|
||||
[self.inAppBrowserViewController close];
|
||||
}
|
||||
@ -700,6 +696,10 @@ static CDVWKInAppBrowser* instance = nil;
|
||||
self.inAppBrowserViewController.navigationDelegate = nil;
|
||||
self.inAppBrowserViewController = nil;
|
||||
|
||||
// Set tmpWindow to hidden to make main webview responsive to touch again
|
||||
// Based on https://stackoverflow.com/questions/4544489/how-to-remove-a-uiwindow
|
||||
self->tmpWindow.hidden = YES;
|
||||
|
||||
if (IsAtLeastiOSVersion(@"7.0")) {
|
||||
if (_previousStatusBarStyle != -1) {
|
||||
[[UIApplication sharedApplication] setStatusBarStyle:_previousStatusBarStyle];
|
||||
|
Loading…
Reference in New Issue
Block a user