File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Thumbs.db
11
11
* .log
12
12
* .swp
13
13
* .user
14
+ * .idea
14
15
15
16
node_modules
16
17
Original file line number Diff line number Diff line change @@ -244,8 +244,9 @@ - (void)show:(CDVInvokedUrlCommand*)command
244
244
tmpWindow = [[UIWindow alloc ] initWithFrame: frame];
245
245
}
246
246
UIViewController *tmpController = [[UIViewController alloc ] init ];
247
+ double baseWindowLevel = [UIApplication sharedApplication ].keyWindow .windowLevel ;
247
248
[tmpWindow setRootViewController: tmpController];
248
- [tmpWindow setWindowLevel: UIWindowLevelNormal ];
249
+ [tmpWindow setWindowLevel: baseWindowLevel+ 1 ];
249
250
250
251
[tmpWindow makeKeyAndVisible ];
251
252
[tmpController presentViewController: nav animated: YES completion: nil ];
You can’t perform that action at this time.
0 commit comments