Compare commits
2 Commits
a7d16e5b8a
...
9333db3d29
Author | SHA1 | Date | |
---|---|---|---|
9333db3d29 | |||
2d287ea304 |
@ -6,5 +6,6 @@ var specialEvents = [
|
||||
// 'bug2016vico', // Central Italy 6.5
|
||||
// 'bug2017rfxe', // CTBT violation North Korea 6.1
|
||||
// 'bug2019fura', // Sprengung Duisburg-Hochheide (Weißer Riese) 2.0
|
||||
'bug2021vtgi' // Geilenkirchen 1.9
|
||||
'bug2021vtgi', // Geilenkirchen 1.9
|
||||
'bug2022ahxi' // Erftstadt 2.9
|
||||
];
|
||||
|
@ -47,7 +47,7 @@ function getGeolocation(id, lat, lng) {
|
||||
var city = json.features[0].properties.city;
|
||||
var countryCode = json.features[0].properties.country;
|
||||
geolocationTable[id] = city;
|
||||
( countryCode != "Germany" ) ? geolocationTable[id] = geolocationTable[id] + " ("+countryCode+")" : null;
|
||||
( countryCode != "Germany" && countryCode != "Deutschland" ) ? geolocationTable[id] = geolocationTable[id] + " ("+countryCode+")" : null;
|
||||
if ( city ) {
|
||||
$("#eventstable a.toggle[eventid="+id+"]").text(geolocationTable[id]);
|
||||
var sort = [[0,1],[1,1],[2,1]];
|
||||
|
@ -47,7 +47,7 @@ function getGeolocation(id, lat, lng) {
|
||||
var city = json.features[0].properties.city;
|
||||
var countryCode = json.features[0].properties.country;
|
||||
geolocationTable[id] = city;
|
||||
( countryCode != "Germany" ) ? geolocationTable[id] = geolocationTable[id] + " ("+countryCode+")" : null;
|
||||
( countryCode != "Germany" && countryCode != "Deutschland" ) ? geolocationTable[id] = geolocationTable[id] + " ("+countryCode+")" : null;
|
||||
if ( city ) {
|
||||
$("#eventstable a.toggle[eventid="+id+"]").text(geolocationTable[id]);
|
||||
var sort = [[0,1],[1,1],[2,1]];
|
||||
|
Loading…
Reference in New Issue
Block a user