diff options
author | Christopher Baines <cb15g11@soton.ac.uk> | 2014-10-10 11:23:49 +0100 |
---|---|---|
committer | Christopher Baines <cb15g11@soton.ac.uk> | 2014-10-10 11:23:49 +0100 |
commit | bc49c072e132fc519af3032cfb8290a50659454a (patch) | |
tree | cf653ec86fe8764793ef3e0b27772d783ac9eac7 | |
parent | 50a59379d03bb308b900c040b5ad554d35c25def (diff) | |
download | leaflet-soton-bc49c072e132fc519af3032cfb8290a50659454a.tar leaflet-soton-bc49c072e132fc519af3032cfb8290a50659454a.tar.gz |
Fix regression
-rw-r--r-- | src/leaflet-soton.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leaflet-soton.js b/src/leaflet-soton.js index 05c9e5f..5d30926 100644 --- a/src/leaflet-soton.js +++ b/src/leaflet-soton.js @@ -155,7 +155,7 @@ offset: icons.vendingHotDrinks.options.popupAnchor }; - var content = vendingPopupTemplate(feature.properties); + var content = LS.infoTemplates.vendingMachine(feature.properties); this._map.showInfo(content, e.latlng, popupOptions); } |