Repository: cordova-android Updated Branches: refs/heads/master b40764104 -> 483babe3b
Add documentation referencing other implementation. Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/483babe3 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/483babe3 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/483babe3 Branch: refs/heads/master Commit: 483babe3bce1c714c1ee2bcae94c45f1761a8d79 Parents: b407641 Author: Marcel Kinard <[email protected]> Authored: Mon Jun 9 15:50:20 2014 -0400 Committer: Marcel Kinard <[email protected]> Committed: Mon Jun 9 15:50:20 2014 -0400 ---------------------------------------------------------------------- framework/src/org/apache/cordova/CordovaChromeClient.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-android/blob/483babe3/framework/src/org/apache/cordova/CordovaChromeClient.java ---------------------------------------------------------------------- diff --git a/framework/src/org/apache/cordova/CordovaChromeClient.java b/framework/src/org/apache/cordova/CordovaChromeClient.java index 54c8948..2edabf1 100755 --- a/framework/src/org/apache/cordova/CordovaChromeClient.java +++ b/framework/src/org/apache/cordova/CordovaChromeClient.java @@ -107,6 +107,7 @@ public class CordovaChromeClient extends WebChromeClient { * @param url * @param message * @param result + * @see Other implementation in the Dialogs plugin. */ @Override public boolean onJsAlert(WebView view, String url, String message, final JsResult result) { @@ -150,6 +151,7 @@ public class CordovaChromeClient extends WebChromeClient { * @param url * @param message * @param result + * @see Other implementation in the Dialogs plugin. */ @Override public boolean onJsConfirm(WebView view, String url, String message, final JsResult result) { @@ -204,6 +206,7 @@ public class CordovaChromeClient extends WebChromeClient { * @param message * @param defaultValue * @param result + * @see Other implementation in the Dialogs plugin. */ @Override public boolean onJsPrompt(WebView view, String url, String message, String defaultValue, JsPromptResult result) {
