From 1316578ba3b7a3aa4c39b3c8ad4d045af9d6f9fd Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Wed, 2 Oct 2013 12:40:53 -0400 Subject: [PATCH] Update JS snapshot to version 3.2.0-dev (via coho) --- framework/assets/www/cordova.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/framework/assets/www/cordova.js b/framework/assets/www/cordova.js index 1144fa4b..0c1edecb 100644 --- a/framework/assets/www/cordova.js +++ b/framework/assets/www/cordova.js @@ -1,5 +1,5 @@ // Platform: android -// 3.2.0-dev-8e5a2e7 +// 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.2.0-dev-8e5a2e7'; +var CORDOVA_JS_BUILD_LABEL = '3.2.0-dev-5ad41a7'; // file: lib/scripts/require.js +/*jshint -W079 */ +/*jshint -W020 */ + var require, define; @@ -1528,8 +1531,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; }; });