diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-09-06 18:29:01 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-09-06 18:29:01 +0100 |
commit | 3216bd52e77a3997e8826d34ccdab5d1d875a9fa (patch) | |
tree | 30da9121196ad4dfd436afa2413440ae02411e70 | |
parent | 6af6bbcd3d700c35d525dda9313ce4c1fc6f9b0b (diff) |
Remove superflous commas from map HTML attributes.
-rw-r--r-- | templates/web/base/maps/openlayers.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/base/maps/openlayers.html b/templates/web/base/maps/openlayers.html index a9758f738..8f8d527e2 100644 --- a/templates/web/base/maps/openlayers.html +++ b/templates/web/base/maps/openlayers.html @@ -18,8 +18,8 @@ [% IF map.zoom -%] data-zoom=[% map.zoom %] [%- END %] - data-pin_prefix='[% c.config.ADMIN_BASE_URL IF admin %][% c.cobrand.path_to_pin_icons %]', - data-pin_new_report_colour='[% c.cobrand.pin_new_report_colour %]', + data-pin_prefix='[% c.config.ADMIN_BASE_URL IF admin %][% c.cobrand.path_to_pin_icons %]' + data-pin_new_report_colour='[% c.cobrand.pin_new_report_colour %]' data-numZoomLevels=[% map.numZoomLevels %] data-zoomOffset=[% map.zoomOffset %] data-map_type="[% map.map_type %]" |