Skip to content

Commit 935eb08

Browse files
committed
Merge branch 'master' into release/4.0.0
2 parents 886de0b + 7a2fcd1 commit 935eb08

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

LeanplumSDK/LeanplumSDK/Classes/MessageTemplates/LPCenterPopupMessageTemplate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ + (void)defineAction
5252
- (UIViewController *)viewControllerWithContext:(LPActionContext *)context
5353
{
5454
LPPopupViewController *viewController = [LPPopupViewController instantiateFromStoryboard];
55-
viewController.modalPresentationStyle = UIModalPresentationOverCurrentContext;
55+
viewController.modalPresentationStyle = UIModalPresentationOverFullScreen;
5656
viewController.context = context;
5757
viewController.shouldShowCancelButton = NO;
5858
return viewController;

LeanplumSDK/LeanplumSDK/Classes/MessageTemplates/LPInterstitialMessageTemplate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ + (void)defineAction
5151
-(UIViewController *)viewControllerWithContext:(LPActionContext *)context
5252
{
5353
LPInterstitialViewController *viewController = [LPInterstitialViewController instantiateFromStoryboard];
54-
viewController.modalPresentationStyle = UIModalPresentationFullScreen;
54+
viewController.modalPresentationStyle = UIModalPresentationOverFullScreen;
5555
viewController.context = context;
5656
return viewController;
5757
}

LeanplumSDK/LeanplumSDK/Classes/MessageTemplates/LPPushAskToAskMessageTemplate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ +(void)defineAction
7373
- (LPPopupViewController *)viewControllerWithContext:(LPActionContext *)context
7474
{
7575
LPPopupViewController *viewController = [LPPopupViewController instantiateFromStoryboard];
76-
viewController.modalPresentationStyle = UIModalPresentationOverCurrentContext;
76+
viewController.modalPresentationStyle = UIModalPresentationOverFullScreen;
7777
viewController.context = context;
7878
viewController.shouldShowCancelButton = YES;
7979
__strong __typeof__(self) strongSelf = self;

LeanplumSDK/LeanplumSDK/Classes/MessageTemplates/LPRichInterstitialMessageTemplate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ + (void)defineAction
4949
- (UIViewController *)viewControllerWithContext:(LPActionContext *)context
5050
{
5151
LPWebInterstitialViewController *viewController = [LPWebInterstitialViewController instantiateFromStoryboard];
52-
viewController.modalPresentationStyle = UIModalPresentationOverCurrentContext;
52+
viewController.modalPresentationStyle = UIModalPresentationOverFullScreen;
5353
viewController.context = context;
5454
return viewController;
5555
}

LeanplumSDK/LeanplumSDK/Classes/MessageTemplates/LPWebInterstitialMessageTemplate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ + (void)defineAction
3838
- (UIViewController *)viewControllerWithContext:(LPActionContext *)context
3939
{
4040
LPWebInterstitialViewController *viewController = [LPWebInterstitialViewController instantiateFromStoryboard];
41-
viewController.modalPresentationStyle = UIModalPresentationOverCurrentContext;
41+
viewController.modalPresentationStyle = UIModalPresentationOverFullScreen;
4242
viewController.context = context;
4343
return viewController;
4444
}

0 commit comments

Comments
 (0)