From a6c7b54998deb1a582c9550f4a4e78fc18e8c137 Mon Sep 17 00:00:00 2001 From: stevepodell Date: Wed, 4 Apr 2018 08:42:00 -0700 Subject: [PATCH] InAppBrowser.java: New method isURLWhileListed to check for whitelisting. Newtest in shouldOverrideUrlLoading, to allow whitelisted custom schemes like"mycoolapp://" inappbrowser.js: Added "customscheme" channel. --- src/android/InAppBrowser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/InAppBrowser.java b/src/android/InAppBrowser.java index 3a03057..be75d16 100644 --- a/src/android/InAppBrowser.java +++ b/src/android/InAppBrowser.java @@ -285,7 +285,7 @@ public class InAppBrowser extends CordovaPlugin { * Previously the Config class had a static method, isUrlWhitelisted(). That * responsibility has been moved to the plugins, with an aggregating method in * PluginManager. - */ + * * @param url, the URL as a String * @return true if WhiteListed, otherwise null or false */