Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.

Incosistent API's #134

Merged
merged 2 commits into from Sep 8, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions Android/ChildBrowser/README.md
Expand Up @@ -34,6 +34,8 @@ Using this plugin requires [Android PhoneGap](http://github.com/phonegap/phonega

The plugin creates the object `window.plugins.childBrowser`. To use, call one of the following, available methods:

Note that unlike the iphone version, android childbrowser doesn't require a call to `ChildBrowser.install()`

<pre>
/**
* Display a new browser with the specified URL.
Expand Down
4 changes: 4 additions & 0 deletions Android/ChildBrowser/childbrowser.js
Expand Up @@ -25,6 +25,10 @@ ChildBrowser.prototype.showWebPage = function(url, usePhoneGap) {
PhoneGap.exec(null, null, "ChildBrowser", "showWebPage", [url, usePhoneGap]);
};

ChildBrowser.install = function() {

}

/**
* Load ChildBrowser
*/
Expand Down