Fixed typo in variable name

pull/2200/head
Andreas 2023-06-14 09:09:03 +02:00
rodzic f400629a10
commit 712c55c9aa
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -128,7 +128,7 @@ L.Maidenhead = L.LayerGroup.extend({
var marker = L.marker([lat,lon], {icon: myIcon}, clickable=false);
if (zoom == 4 || zoom == 3) {
marker.bindTooltip(locator);
if (typeof variable !== 'undefined' && gridsquaremap == true) {
if (typeof gridsquaremap !== 'undefined' && gridsquaremap == true) {
marker.on('click', function(event) {
spawnGridsquareModal(locator);
});