You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "jcesarmobile (JIRA)" <ji...@apache.org> on 2017/12/27 13:41:00 UTC

[jira] [Commented] (CB-13712) cordova-plugin-statusbar resets overlaysWebView on rotation

    [ https://issues.apache.org/jira/browse/CB-13712?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16304531#comment-16304531 ] 

jcesarmobile commented on CB-13712:
-----------------------------------

Arg, we had a small delay on the UIApplicationDidChangeStatusBarFrameNotification event for iOS 7 as it reported wrong sizes, but we removed it in latest update as we removed all iOS 7 specific code.
Looks like the delay is also needed for iOS 11 and maybe others, so I'll add it again.

> cordova-plugin-statusbar resets overlaysWebView on rotation
> -----------------------------------------------------------
>
>                 Key: CB-13712
>                 URL: https://issues.apache.org/jira/browse/CB-13712
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: cordova-plugin-statusbar
>    Affects Versions: 2.4.0
>         Environment: cordova 6.4.0
>            Reporter: Matthias Schmitt
>            Priority: Minor
>
> I have set StatusBarOverlaysWebView to false in config.xml:
>   <preference name="StatusBarOverlaysWebView" value="false" />
> This is working fine. When I rotate the iPhone X to landscape and back again, the StatusBar overlays the WebView again. As a workaround I can fix this via:
>   $(window).on( "orientationchange", function() {
>     StatusBar.overlaysWebView(true);
>     StatusBar.overlaysWebView(false);
> });
> I guess this could better be fixed in the code of the plugin. 
> Additional I need to set overlaysWebView to true before setting it to false again. Otherwise the workaround will not work.
> Thank you.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org