Repository: cordova-plugin-inappbrowser
Updated Branches:
  refs/heads/master 783c23b66 -> c6ffd69e9


CB-12366: (ios) Reduce tmpWindow level to prevent overlapping statusbar

 This closes #209


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/commit/c6ffd69e
Tree: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/tree/c6ffd69e
Diff: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/diff/c6ffd69e

Branch: refs/heads/master
Commit: c6ffd69e9ce4c5aeecf4d292c4062d4596534bd7
Parents: 783c23b
Author: Reid Beels <m...@reidbeels.com>
Authored: Wed Jan 18 16:33:27 2017 -0800
Committer: Julio César <jcesarmob...@gmail.com>
Committed: Tue Feb 21 21:08:45 2017 +0100

----------------------------------------------------------------------
 src/ios/CDVInAppBrowser.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/blob/c6ffd69e/src/ios/CDVInAppBrowser.m
----------------------------------------------------------------------
diff --git a/src/ios/CDVInAppBrowser.m b/src/ios/CDVInAppBrowser.m
index e8aced7..c9ebad2 100644
--- a/src/ios/CDVInAppBrowser.m
+++ b/src/ios/CDVInAppBrowser.m
@@ -243,7 +243,7 @@
             UIWindow *tmpWindow = [[UIWindow alloc] initWithFrame:frame];
             UIViewController *tmpController = [[UIViewController alloc] init];
             [tmpWindow setRootViewController:tmpController];
-            [tmpWindow setWindowLevel:UIWindowLevelAlert];
+            [tmpWindow setWindowLevel:UIWindowLevelNormal];
 
             [tmpWindow makeKeyAndVisible];
             [tmpController presentViewController:nav animated:YES 
completion:nil];


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org

Reply via email to