Updated Branches:
  refs/heads/master bfc74d647 -> e208322ba

[CB-3834] Missing double quotes in iOS deprecation notice


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

Branch: refs/heads/master
Commit: e208322ba4c6b97e4f02534735e9db4ea02a9c0f
Parents: bfc74d6
Author: Shazron Abdullah <[email protected]>
Authored: Mon Jun 24 15:26:59 2013 -0700
Committer: Shazron Abdullah <[email protected]>
Committed: Mon Jun 24 15:26:59 2013 -0700

----------------------------------------------------------------------
 lib/ios/exec.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/e208322b/lib/ios/exec.js
----------------------------------------------------------------------
diff --git a/lib/ios/exec.js b/lib/ios/exec.js
index 7023c06..93269c5 100644
--- a/lib/ios/exec.js
+++ b/lib/ios/exec.js
@@ -151,7 +151,7 @@ function iOSExec() {
            actionArgs = Array.prototype.splice.call(arguments, 1);
 
            console.log('The old format of this exec call has been removed 
(deprecated since 2.1). Change to: ' +
-                       "cordova.exec(null, null, \"" + service + "\", " + 
action + "\"," + JSON.stringify(actionArgs) + ");"
+                       "cordova.exec(null, null, \"" + service + "\", \"" + 
action + "\"," + JSON.stringify(actionArgs) + ");"
                        );
            return;
        } catch (e) {

Reply via email to