Use a template for popUps

This commit is contained in:
James R Sconfitto 2013-10-28 21:58:43 -04:00
parent 59fe51f28f
commit caf109e21b

View File

@ -94,6 +94,10 @@
<p><strong><span class="red-text">{{numberOfSpots}}</span> hack spots strong!</p> <p><strong><span class="red-text">{{numberOfSpots}}</span> hack spots strong!</p>
</script> </script>
<script id="popUps" type="text/html">
<h2>{{ name }}</h2>
</script>
<script id="selectedSpot" type="text/html"> <script id="selectedSpot" type="text/html">
{{#rows}} {{#rows}}
<h4 class="fauxButton">SELECTED SPOT</h4> <h4 class="fauxButton">SELECTED SPOT</h4>
@ -192,7 +196,7 @@
// interactions that we want // interactions that we want
function addPopups(map, markerLayer) { function addPopups(map, markerLayer) {
markerLayer.eachLayer(function(marker) { markerLayer.eachLayer(function(marker) {
var popupContent = '<h2>' + marker.feature.opts.name + '</h2>' var popupContent = ich.popUps(marker.feature.opts)
marker.bindPopup(popupContent, {closeButton: false,}) marker.bindPopup(popupContent, {closeButton: false,})
}) })
markerLayer.on('click', function(e) { markerLayer.on('click', function(e) {