update country flag api

This commit is contained in:
RaidMax 2021-11-02 18:12:47 -05:00
parent f99fdac4b0
commit 825dd6f382
2 changed files with 2 additions and 3 deletions

View File

@ -99,7 +99,7 @@ $(document).ready(function () {
$.get('https://ip2c.org/' + $(address).data('ip'), function (result) {
const countryCode = result.split(';')[1].toLowerCase();
if (countryCode !== 'zz') {
$(address).css('background-image', `url(https://www.countryflags.io/${countryCode}/flat/64.png)`);
$(address).css('background-image', `url('https://flagcdn.com/w80/${countryCode}.png')`);
}
});
});

View File

@ -26,7 +26,7 @@
$('#ip_lookup_country').text(country);
if (countryCode !== 'zz' && countryCode !== '') {
$(address).css('background-image', `url(https://www.countryflags.io/${countryCode}/flat/64.png)`);
$(address).css('background-image', `url('https://flagcdn.com/w80/${countryCode}.png')`);
}
});
});
@ -34,7 +34,6 @@
/* set the end time for initial event query */
startAt = $('.loader-data-time').last().data('time');
$('#filter_meta_container_button').click(function () {
$('#filter_meta_container').hide();
$('#filter_meta_container').removeClass('d-none');