Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'testing' into testing
  • Loading branch information
LukePrior authored Mar 28, 2022
commit 6af54517c07d28e52001b28e1d4c9b923c35a622
4 changes: 3 additions & 1 deletion js/tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,9 @@ function sidebar_update() {
if (map.getBounds().contains(vehicles[serial].marker.getLatLng())) {
$("#main .vehicle"+vehicles[serial].uuid).show();
} else {
$("#main .vehicle"+vehicles[serial].uuid).hide();
if (!($("#main .vehicle"+vehicles[serial].uuid).hasClass("follow"))) {
$("#main .vehicle"+vehicles[serial].uuid).hide();
}
}
}
} else {
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.