You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by na...@apache.org on 2014/07/09 20:10:34 UTC

git commit: Fixing a typo which was sending the wrong string to plugins for js confirm dialogs

Repository: cordova-amazon-fireos
Updated Branches:
  refs/heads/master f0aaf8103 -> 6b79ea2fb


Fixing a typo which was sending the wrong string to plugins for js confirm dialogs


Project: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/commit/6b79ea2f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/tree/6b79ea2f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/diff/6b79ea2f

Branch: refs/heads/master
Commit: 6b79ea2fb304f6856f678d150428115d39ed3f95
Parents: f0aaf81
Author: Archana Naik <na...@lab126.com>
Authored: Tue May 20 14:10:01 2014 -0700
Committer: Archana Naik <na...@lab126.com>
Committed: Wed Jul 9 11:10:09 2014 -0700

----------------------------------------------------------------------
 framework/src/org/apache/cordova/CordovaChromeClient.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/blob/6b79ea2f/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 6dfbcb8..ca19efd 100755
--- a/framework/src/org/apache/cordova/CordovaChromeClient.java
+++ b/framework/src/org/apache/cordova/CordovaChromeClient.java
@@ -152,7 +152,7 @@ public class CordovaChromeClient extends AmazonWebChromeClient {
      */
     @Override
     public boolean onJsConfirm(AmazonWebView view, String url, String message, final AmazonJsResult result) {
-        Object returnVal = processJsCallback(url, message, null, result, "onJsCofirm");
+        Object returnVal = processJsCallback(url, message, null, result, "onJsConfirm");
         if (returnVal != null && returnVal instanceof Boolean && (Boolean) returnVal) {
             return true;
         }