You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mm...@apache.org on 2013/02/25 14:41:02 UTC

[6/50] ios commit: function name was wrong (case sensitive)

function name was wrong (case sensitive)


Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/299a324e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/299a324e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/299a324e

Branch: refs/heads/multipart_plugin_result
Commit: 299a324e8c30065fc4511c1fe59c6515d4842f09
Parents: 3c3b0c0
Author: Idan G <id...@gmail.com>
Authored: Wed Dec 26 13:29:35 2012 +0200
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Feb 12 16:12:06 2013 -0500

----------------------------------------------------------------------
 guides/Cordova Custom URL Scheme Handling.md |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/299a324e/guides/Cordova Custom URL Scheme Handling.md
----------------------------------------------------------------------
diff --git a/guides/Cordova Custom URL Scheme Handling.md b/guides/Cordova Custom URL Scheme Handling.md
index 5beb0e4..03c114f 100644
--- a/guides/Cordova Custom URL Scheme Handling.md	
+++ b/guides/Cordova Custom URL Scheme Handling.md	
@@ -34,9 +34,9 @@ For an iOS app, you can add a URL Scheme handler in your app's Info.plist so tha
         
 You **cannot** launch any interactive features like alerts in the **handleOpenURL** code, if you do, your app will hang. Similarly, you should not call any Cordova APIs in there, unless you wrap it first in a setTimeout call, with a timeout value of zero:
 
-        function handleOpenUrl(url) {
+        function handleOpenURL(url) {
              // TODO: parse the url, and do something 
              setTimeout(function() {
                  // TODO: call some Cordova API here
              }, 0);
-        }
\ No newline at end of file
+        }