You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/07/27 01:04:21 UTC

[7/7] ios commit: Update JS snapshot to version 4.3.0-dev (via coho)

Update JS snapshot to version 4.3.0-dev (via coho)


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

Branch: refs/heads/master
Commit: debd4c69e7c08f418a02ee5671f7a87ea0511004
Parents: bf2ff83
Author: Steve Gill <st...@gmail.com>
Authored: Tue Jul 26 16:28:57 2016 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Tue Jul 26 16:28:57 2016 -0700

----------------------------------------------------------------------
 CordovaLib/cordova.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/debd4c69/CordovaLib/cordova.js
----------------------------------------------------------------------
diff --git a/CordovaLib/cordova.js b/CordovaLib/cordova.js
index 19f889c..ac01961 100644
--- a/CordovaLib/cordova.js
+++ b/CordovaLib/cordova.js
@@ -1,5 +1,5 @@
 // Platform: ios
-// 2fd4bcb84048415922d13d80d35b8d1668e8e150
+// d403ce434788ffe1937711d6ebcbcc837fcbcb14
 /*
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
@@ -1827,7 +1827,7 @@ utils.clone = function(obj) {
 
     retVal = {};
     for(i in obj){
-        if(!(i in retVal) || retVal[i] != obj[i]) {
+        if((!(i in retVal) || retVal[i] != obj[i]) && typeof obj[i] != 'undefined') {
             retVal[i] = utils.clone(obj[i]);
         }
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org