We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8d47c commit 3df34c2Copy full SHA for 3df34c2
js/tracker.js
@@ -1061,7 +1061,9 @@ function sidebar_update() {
1061
if (map.getBounds().contains(vehicles[serial].marker.getLatLng())) {
1062
$("#main .vehicle"+vehicles[serial].uuid).show();
1063
} else {
1064
- $("#main .vehicle"+vehicles[serial].uuid).hide();
+ if (!($("#main .vehicle"+vehicles[serial].uuid).hasClass("follow"))) {
1065
+ $("#main .vehicle"+vehicles[serial].uuid).hide();
1066
+ }
1067
}
1068
1069
0 commit comments