don't show "view on planespotters" when using planespotter thumbnails

This commit is contained in:
Matthias Wirth
2021-03-14 03:34:19 +01:00
parent 10c31bc5cd
commit 9dd53b4958
2 changed files with 6 additions and 1 deletions

View File

@@ -1803,6 +1803,11 @@ function initMap() {
} else {
$('#photo_container').addClass('hidden');
}
if (showPictures && planespottersAPI && !flightawareLinks) {
$('#photoLinkRow').addClass('hidden');
} else {
$('#photoLinkRow').removeClass('hidden');
}
refreshSelected();
}
});