Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0ECFDE92C for ; Mon, 25 Feb 2013 13:41:17 +0000 (UTC) Received: (qmail 86596 invoked by uid 500); 25 Feb 2013 13:41:16 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 86398 invoked by uid 500); 25 Feb 2013 13:41:16 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 82391 invoked by uid 99); 25 Feb 2013 13:41:02 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Feb 2013 13:41:02 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 605F182FA79; Mon, 25 Feb 2013 13:41:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mmocny@apache.org To: commits@cordova.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [6/50] ios commit: function name was wrong (case sensitive) Message-Id: <20130225134102.605F182FA79@tyr.zones.apache.org> Date: Mon, 25 Feb 2013 13:41:02 +0000 (UTC) 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 Authored: Wed Dec 26 13:29:35 2012 +0200 Committer: Andrew Grieve 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 + }