diff --git a/monocle/static/js/main.js b/monocle/static/js/main.js index b83c147c..84946084 100644 --- a/monocle/static/js/main.js +++ b/monocle/static/js/main.js @@ -184,7 +184,7 @@ function FortMarker (raw) { content += '
Prestige: ' + raw.prestige + '
Guarding Pokemon: ' + raw.pokemon_name + ' (#' + raw.pokemon_id + ')'; } - content += '
=> Get directions'; + content += '
=> Get directions'; event.popup.setContent(content); }); marker.bindPopup(); @@ -247,7 +247,7 @@ function addSpawnsToMap (data, map) { circle.bindPopup('Spawn ' + item.spawn_id + '' + '
despawn: ' + time + '
duration: '+ (item.duration == null ? '30mn' : item.duration + 'mn') + - '
=> Get directions'); + '
=> Get directions'); circle.addTo(overlays.Spawns); }); } @@ -258,7 +258,7 @@ function addPokestopsToMap (data, map) { var marker = L.marker([item.lat, item.lon], {icon: icon}); marker.raw = item; marker.bindPopup('Pokestop: ' + item.external_id + '' + - '
=> Get directions'); + '
=> Get directions'); marker.addTo(overlays.Pokestops); }); }