Browse Source

[enh] only display ffdn members in embeded map

Laurent Peuch 9 years ago
parent
commit
34a50c87e0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      ffdnispdb/templates/site_embed.js

+ 2 - 0
ffdnispdb/templates/site_embed.js

@@ -320,6 +320,8 @@ function init_map() {
             if(!('coordinates' in isp))
                 return; // cannot display an ISP without coordinates
 
+            if (!isp.ffdn_member) return;
+
             var marker = L.marker([isp['coordinates']['latitude'], isp['coordinates']['longitude']],
                                   {'icon': isp.ffdn_member ? icon_ffdn : icon});