Skip to content
Snippets Groups Projects
Commit c957259e authored by Matthew Juhl's avatar Matthew Juhl
Browse files

Fix JS error on homepage (this._flash.addOverlay is not a function)

parent 65f87705
No related branches found
No related tags found
No related merge requests found
......@@ -120,6 +120,9 @@ function letsdothisloop(delay) {
};
function openLocation(lng, lat, username, location, displayname, title, comment, linkname) {
if (!map1._flash.addOverlay) {
return;
}
if(!pinsonly)
clearTimeout(t);
var latlng = new FE.LatLng(lat,lng);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment