You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/09/20 04:44:56 UTC

[1/2] ios commit: Set VERSION to 3.2.0-dev (via coho)

Updated Branches:
  refs/heads/master 6431b39b1 -> 942b25ef3


Set VERSION to 3.2.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/2179602e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/2179602e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/2179602e

Branch: refs/heads/master
Commit: 2179602edeefe91d8ae6888304aaf3b058382b16
Parents: 6431b39
Author: Andrew Grieve <ag...@chromium.org>
Authored: Thu Sep 19 22:44:05 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Thu Sep 19 22:44:05 2013 -0400

----------------------------------------------------------------------
 CordovaLib/VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/2179602e/CordovaLib/VERSION
----------------------------------------------------------------------
diff --git a/CordovaLib/VERSION b/CordovaLib/VERSION
index 38f8e88..df4a767 100644
--- a/CordovaLib/VERSION
+++ b/CordovaLib/VERSION
@@ -1 +1 @@
-dev
+3.2.0-dev


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

Posted by ag...@apache.org.
Update JS snapshot to version 3.2.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/942b25ef
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/942b25ef
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/942b25ef

Branch: refs/heads/master
Commit: 942b25ef31d1627ebd648f584f9e1aa35bbcfdcb
Parents: 2179602
Author: Andrew Grieve <ag...@chromium.org>
Authored: Thu Sep 19 22:44:07 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Thu Sep 19 22:44:07 2013 -0400

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


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/942b25ef/CordovaLib/cordova.js
----------------------------------------------------------------------
diff --git a/CordovaLib/cordova.js b/CordovaLib/cordova.js
index 0ca0782..2060a96 100644
--- a/CordovaLib/cordova.js
+++ b/CordovaLib/cordova.js
@@ -1,5 +1,5 @@
 // Platform: ios
-// 3.1.0-rc1
+// 3.2.0-dev-f0458b6
 /*
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
@@ -19,9 +19,12 @@
  under the License.
 */
 ;(function() {
-var CORDOVA_JS_BUILD_LABEL = '3.1.0-rc1';
+var CORDOVA_JS_BUILD_LABEL = '3.2.0-dev-f0458b6';
 // file: lib/scripts/require.js
 
+/*jshint -W079 */
+/*jshint -W020 */
+
 var require,
     define;
 
@@ -1373,8 +1376,8 @@ var anchorEl = document.createElement('a');
  * For relative URLs, converts them to absolute ones.
  */
 urlutil.makeAbsolute = function(url) {
-  anchorEl.href = url;
-  return anchorEl.href;
+    anchorEl.href = url;
+    return anchorEl.href;
 };
 
 });