Pebble: return the current position to the caller of the getCurrentPosition function.
This fixes a bug introduced in d8894d315a
that affects also #643.
This commit is contained in:
parent
60ed9ca373
commit
4dbc255ad5
|
@ -4,7 +4,7 @@ navigator.geolocation.getCurrentPosition = function(success, failure, options) {
|
|||
if(options && options.maximumAge && geoposition.timestamp < Date.now() - options.maximumAge) {
|
||||
failure({ code: 2, message: "POSITION_UNAVAILABLE"});
|
||||
} else {
|
||||
success();
|
||||
success(geoposition);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue