diff options
-rw-r--r-- | resources/map.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/resources/map.js b/resources/map.js index b9edc79..6c7fbdf 100644 --- a/resources/map.js +++ b/resources/map.js @@ -44,7 +44,6 @@ $(document).ready(function() { self.layers = L.control.layers(null, { "Hospitals" : self.hospitalLayer }).addTo(map); - _.each(filteredLayers, function(layer, i) { self.layers.addOverlay(layer, self.hospitalAttributes[i]); }); @@ -116,11 +115,10 @@ $(document).ready(function() { if (isHierarchical.exec(key)) { key = key.split(':')[1]; } - if (!_.contains(self.hospitalAttributes, key) && isBoolean(val)) { + if ((!_.contains(self.hospitalAttributes, key)) && isBoolean(val)) { self.hospitalAttributes.push(key); } }); - self.hospitalAttributes; } function geojsonLayer() { |