Connor Pearson

Results 93 comments of Connor Pearson

iOS 10 has probably changed how WKWebView controls its accessory bar. It may be as simple as changing WKClassString to something other than WKContentView. The WKWebView source code can be...

Does anyone still see this issue? I don't see it on a 10.2 simulator.

Both this plugin and the google maps plugin assign themselves as the scrollview delegate with this line `self.webView.scrollView.delegate = self;` There can only be one delegate so the plugin that...

The scrollView only calls one scrollViewDidScroll method. I think the only way to make this work is to have some third object that receives scrollViewDidScroll and then calls scrollViewDidScroll on...

Opening and closing that bar triggers a keyboard frame change event which we listen to for resizing the webview. So it makes sense that it could fix the issue. I'm...

@josiaho I wasn't able to reproduce it. Do you have some sample code that shows the issue?

@josiaho, are you able to use WKWebView in your application? Adding cordova-plugin-wkwebview-engine to the sample seemed to fix the issue for me.

Thanks for the PR. This issue has bugged me for a while. I like the approach of letting the user define their own JS animation. The reason I didn't include...

@hjellek, thanks for updating this PR! I like the general approach here. I was hesitant to include a JavaScript solution since it likely would not work for every app. Allowing...

@Aarbel, regarding your first comment I think the whitespace is either part of the app's view controller or one of the WebView's views. I don't recall which, but I explored...