Skip to content

Commit

Permalink
Merge pull request flightaware#49 from wiedehopf/markers-fix
Browse files Browse the repository at this point in the history
Fix some display errors
  • Loading branch information
mutability authored Aug 13, 2019
2 parents 1ecc925 + f1cb09d commit 0d2bd6a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions public_html/markers.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public_html/planeObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ PlaneObject.prototype.getAltitudeColor = function(altitude) {
h = ColorByAlt.unknown.h;
s = ColorByAlt.unknown.s;
l = ColorByAlt.unknown.l;
} else if (this.altitude === "ground") {
} else if (altitude === "ground") {
h = ColorByAlt.ground.h;
s = ColorByAlt.ground.s;
l = ColorByAlt.ground.l;
Expand Down

0 comments on commit 0d2bd6a

Please sign in to comment.