Browse Source

[enh] update legend

Laurent Peuch 9 years ago
parent
commit
89bed17b5a
1 changed files with 3 additions and 2 deletions
  1. 3 2
      ffdnispdb/templates/site_embed.js

+ 3 - 2
ffdnispdb/templates/site_embed.js

@@ -274,8 +274,9 @@ function init_map() {
     legend.onAdd = function (map) {
         var div = L.DomUtil.create('div', 'info legend');
         div.innerHTML  = '<small>'+{{ _('Legend')|js_str }}+'&thinsp;:</small>&nbsp; ';
-        div.innerHTML += '<i style="background: #ff7900" title="'+{{ _('ISP')|js_str }}+'"></i> ';
-        div.innerHTML += '<i style="background: #00aac9" title="'+{{ _('Member of the FDN Federation')|js_str }}+'"></i> ';
+        div.innerHTML += '<i style="background: #EAEAEA" title="'+{{ _('Members that might do Internet Cube one day (ask them!)')|js_str }}+'"></i> ';
+        div.innerHTML += '<i style="background: #E5CC17" title="'+{{ _('Members that offers VPN services')|js_str }}+'"></i> ';
+        div.innerHTML += '<i style="background: #D20000" title="'+{{ _('Members that offers Internet Cube')|js_str }}+'"></i> ';
         $(div).children('i').tooltip({container: 'body'});
 
         return div;