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 2013/10/01 23:27:54 UTC

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

Updated Branches:
  refs/heads/master 36c254431 -> 9f0a83786


Set VERSION to 3.2.0-dev (via coho)


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

Branch: refs/heads/master
Commit: 437bd466d5cf5a2f69631178f8bbbba8e5b21d07
Parents: 36c2544
Author: Steven Gill <st...@gmail.com>
Authored: Tue Oct 1 14:24:11 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Oct 1 14:24:11 2013 -0700

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


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


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

Posted by st...@apache.org.
Update JS snapshot to version 3.2.0-dev (via coho)


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

Branch: refs/heads/master
Commit: 9f0a837864e06ef24f66a9d2c02a8b96178e3dff
Parents: 437bd46
Author: Steven Gill <st...@gmail.com>
Authored: Tue Oct 1 14:24:13 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Oct 1 14:24:13 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/cordova-firefoxos/blob/9f0a8378/cordova-lib/cordova.js
----------------------------------------------------------------------
diff --git a/cordova-lib/cordova.js b/cordova-lib/cordova.js
index 498194f..440ef39 100644
--- a/cordova-lib/cordova.js
+++ b/cordova-lib/cordova.js
@@ -1,5 +1,5 @@
 // Platform: firefoxos
-// 3.1.0-rc1
+// 3.2.0-dev-5ad41a7
 /*
  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-5ad41a7';
 // file: lib/scripts/require.js
 
+/*jshint -W079 */
+/*jshint -W020 */
+
 var require,
     define;
 
@@ -1215,8 +1218,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;
 };
 
 });