CB-7850 clarify role of whitelist

This commit is contained in:
Marcel Kinard 2014-10-22 13:07:20 -04:00
parent 8012ae709b
commit 216ed8ae57

View File

@ -23,8 +23,14 @@ This plugin provides a web browser view that displays when calling `window.open(
var ref = window.open('http://apache.org', '_blank', 'location=yes'); var ref = window.open('http://apache.org', '_blank', 'location=yes');
__NOTE__: The InAppBrowser window behaves like a standard web browser, The InAppBrowser window behaves like a standard web browser,
and can't access Cordova APIs. and can't access Cordova APIs. For this reason, the InAppBrowser is recommended
if you need to load third-party (untrusted) content, instead of loading that
into the main Cordova webview. The InAppBrowser is not subject to the
whitelist, nor is opening links in the system browser.
The InAppBrowser provides by default its own GUI controls for the user (back,
forward, done).
## Installation ## Installation