Update JS snapshot to version 3.3.0 (via coho)

This commit is contained in:
Joe Bowser
2013-12-10 13:43:16 -08:00
parent 32ce970ee4
commit 81ed0d8d09

View File

@@ -1,5 +1,5 @@
// Platform: android
// 3.3.0-rc1
// 3.3.0
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
@@ -19,7 +19,7 @@
under the License.
*/
;(function() {
var CORDOVA_JS_BUILD_LABEL = '3.3.0-rc1';
var CORDOVA_JS_BUILD_LABEL = '3.3.0';
// file: lib/scripts/require.js
/*jshint -W079 */
@@ -34,7 +34,7 @@ var require,
requireStack = [],
// Map of module ID -> index into requireStack of modules currently being built.
inProgressModules = {},
SEPERATOR = ".";
SEPARATOR = ".";
@@ -44,7 +44,7 @@ var require,
var resultantId = id;
//Its a relative path, so lop off the last portion and add the id (minus "./")
if (id.charAt(0) === ".") {
resultantId = module.id.slice(0, module.id.lastIndexOf(SEPERATOR)) + SEPERATOR + id.slice(2);
resultantId = module.id.slice(0, module.id.lastIndexOf(SEPARATOR)) + SEPARATOR + id.slice(2);
}
return require(resultantId);
};