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 BA6C710811 for ; Mon, 4 Nov 2013 18:46:24 +0000 (UTC) Received: (qmail 24094 invoked by uid 500); 4 Nov 2013 18:46:24 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 24075 invoked by uid 500); 4 Nov 2013 18:46:24 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 24068 invoked by uid 99); 4 Nov 2013 18:46:24 -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, 04 Nov 2013 18:46:24 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 5B2CE3ABBE; Mon, 4 Nov 2013 18:46:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mwbrooks@apache.org To: commits@cordova.apache.org Date: Mon, 04 Nov 2013 18:46:25 -0000 Message-Id: <61c4de085183447cba611d2165cc57f8@git.apache.org> In-Reply-To: <99e57868041942da80b199db30165b75@git.apache.org> References: <99e57868041942da80b199db30165b75@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] docs commit: Fix syntax error in InAppBrowser full example. Fix syntax error in InAppBrowser full example. Original patch (285eba) by Nikhil Patel . Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/f4cd761a Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/f4cd761a Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/f4cd761a Branch: refs/heads/master Commit: f4cd761acde9910d8e7ddf67d7d5bb304e4182c3 Parents: 285eba1 Author: Michael Brooks Authored: Mon Nov 4 10:45:02 2013 -0800 Committer: Michael Brooks Committed: Mon Nov 4 10:45:02 2013 -0800 ---------------------------------------------------------------------- docs/en/edge/cordova/inappbrowser/inappbrowser.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f4cd761a/docs/en/edge/cordova/inappbrowser/inappbrowser.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/cordova/inappbrowser/inappbrowser.md b/docs/en/edge/cordova/inappbrowser/inappbrowser.md index d71bf7f..47d3339 100644 --- a/docs/en/edge/cordova/inappbrowser/inappbrowser.md +++ b/docs/en/edge/cordova/inappbrowser/inappbrowser.md @@ -444,10 +444,10 @@ The function is passed an `InAppBrowserEvent` object. // function changeBackgroundColor() { iabRef.insertCSS({ - code: "body { background: #ffff00" + code: "body { background: #ffff00; }" }, function() { alert("Styles Altered"); - } + }); } function iabClose(event) {