You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2018/09/07 13:14:30 UTC

[GitHub] lukeinage edited a comment on issue #53: iPhone X initial height issue

lukeinage edited a comment on issue #53: iPhone X initial height issue
URL: https://github.com/apache/cordova-plugin-wkwebview-engine/issues/53#issuecomment-419435238
 
 
   Turns out my issue was with the inappbrowser-wkwebview instead which makes use of this plugin https://github.com/dpa99c/cordova-plugin-inappbrowser-wkwebview
   
   It's the same fix as #45 and I added it to line 612 of CDVInAppBrowser.m
   
   `#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000
   
      if (@available(iOS 11.0, *)) {
   
          [self.webView.scrollView setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
   
      }
   
   #endif`
   
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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