diff --git a/framework/assets/www/cordova.js b/framework/assets/www/cordova.js index 4a4a4df6..b5fdf697 100644 --- a/framework/assets/www/cordova.js +++ b/framework/assets/www/cordova.js @@ -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); };