Updated Branches: refs/heads/3.0.0 928815822 -> 12ebadbb0
updated cordovajs Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/e30bc6b6 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/e30bc6b6 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/e30bc6b6 Branch: refs/heads/3.0.0 Commit: e30bc6b6e44f4ad7bcbef7d1808215f0ae8c47dc Parents: 3a55991 Author: Steven Gill <[email protected]> Authored: Thu Jun 13 15:55:48 2013 -0700 Committer: Steven Gill <[email protected]> Committed: Thu Jun 13 15:55:48 2013 -0700 ---------------------------------------------------------------------- framework/assets/www/cordova.js | 58 ++---------------------------------- 1 file changed, 2 insertions(+), 56 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-android/blob/e30bc6b6/framework/assets/www/cordova.js ---------------------------------------------------------------------- diff --git a/framework/assets/www/cordova.js b/framework/assets/www/cordova.js index a90b232..f8667e5 100644 --- a/framework/assets/www/cordova.js +++ b/framework/assets/www/cordova.js @@ -1,5 +1,5 @@ // Platform: android -// 2.7.0rc1-101-gc6482ac +// 2.7.0rc1-116-gf0108ae /* 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 = '2.7.0rc1-101-gc6482ac'; +var CORDOVA_JS_BUILD_LABEL = '2.7.0rc1-116-gf0108ae'; // file: lib/scripts/require.js var require, @@ -1273,60 +1273,6 @@ module.exports = { }); -// file: lib/common/plugin/Coordinates.js -define("cordova/plugin/Coordinates", function(require, exports, module) { - -/** - * This class contains position information. - * @param {Object} lat - * @param {Object} lng - * @param {Object} alt - * @param {Object} acc - * @param {Object} head - * @param {Object} vel - * @param {Object} altacc - * @constructor - */ -var Coordinates = function(lat, lng, alt, acc, head, vel, altacc) { - /** - * The latitude of the position. - */ - this.latitude = lat; - /** - * The longitude of the position, - */ - this.longitude = lng; - /** - * The accuracy of the position. - */ - this.accuracy = acc; - /** - * The altitude of the position. - */ - this.altitude = (alt !== undefined ? alt : null); - /** - * The direction the device is moving at the position. - */ - this.heading = (head !== undefined ? head : null); - /** - * The velocity with which the device is moving at the position. - */ - this.speed = (vel !== undefined ? vel : null); - - if (this.speed === 0 || this.speed === null) { - this.heading = NaN; - } - - /** - * The altitude accuracy of the position. - */ - this.altitudeAccuracy = (altacc !== undefined) ? altacc : null; -}; - -module.exports = Coordinates; - -}); - // file: lib/common/plugin/DirectoryEntry.js define("cordova/plugin/DirectoryEntry", function(require, exports, module) {
