-
Notifications
You must be signed in to change notification settings - Fork 344
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS10 webview resize bugs #34
Comments
kristfal
changed the title
iOS10 webview resize handlers are not notified
iOS10 webview resize bugs
Sep 5, 2016
Are you using UIWebView or WKWebView? |
@cjpearson Only tested in WKWebView. |
It may be related to #32. The changelog for the WebKit bug mentions that it no longer fires resize events. |
The same problem, do not know how to solve |
Closing this as I think #32 fixed it. It should work in 1.1.5. Let me know if you still see this issue. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
iOS10 introduces a bug that is exposed when calling
window.Keyboard.shrinkView();
:When opening the keyboard with and
window.Keyboard.shrinkView(true);
iOS9 would resize the GUI and awindow.onresize
event would fire. In iOS10, the GUI is not resized (elements that would overflow and create a scrolling context does not scroll).In order for the overflowing elements to be scrollable, one has to manually update (remove and reset) the
overflow
CSS propery on the overflowing DIV after the keyboard has entered the view.The text was updated successfully, but these errors were encountered: