diff --git a/framework/assets/js/position.js b/framework/assets/js/position.js index 3371658a..31df3232 100644 --- a/framework/assets/js/position.js +++ b/framework/assets/js/position.js @@ -42,7 +42,7 @@ function Coordinates(lat, lng, alt, acc, head, vel, altacc) { /** * The altitude accuracy of the position. */ - this.altitudeAccuracy = (altacc == "undefined") ? altacc : null; + this.altitudeAccuracy = (altacc != 'undefined') ? altacc : null; } /**