dpa99c commented on a change in pull request #700:
URL:
https://github.com/apache/cordova-plugin-inappbrowser/pull/700#discussion_r481247686
##########
File path: src/android/InAppBrowser.java
##########
@@ -983,32 +966,16 @@ public void openFileChooser(ValueCallback<Uri> uploadMsg,
String acceptType)
}
});
- currentClient = new InAppBrowserClient(thatWebView, edittext,
beforeload);
- inAppWebView.setWebViewClient(currentClient);
+ WebViewClient client = new InAppBrowserClient(thatWebView,
edittext);
+ inAppWebView.setWebViewClient(client);
WebSettings settings = inAppWebView.getSettings();
settings.setJavaScriptEnabled(true);
settings.setJavaScriptCanOpenWindowsAutomatically(true);
settings.setBuiltInZoomControls(showZoomControls);
settings.setPluginState(android.webkit.WebSettings.PluginState.ON);
- // Add postMessage interface
- class JsObject {
Review comment:
Another feature removed with no explanation why
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]