diff options
author | Raphaël Droz <raphael.droz+floss@gmail.com> | 2012-10-07 16:25:57 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-07 16:25:57 +0200 |
commit | 83e447547d91e738bcc6b4b55782287ddd6dfbab (patch) | |
tree | ff2fc77a2ecca581a1cc965fd005b979857b87be | |
parent | 8c999d14249a598c9a385cc495d7cbaaeb66c649 (diff) | |
download | Chimère-83e447547d91e738bcc6b4b55782287ddd6dfbab.tar.bz2 Chimère-83e447547d91e738bcc6b4b55782287ddd6dfbab.zip |
JS: fix checked_categories
-rw-r--r-- | chimere/templates/main_map.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chimere/templates/main_map.html b/chimere/templates/main_map.html index 8b8cc2e..b615f97 100644 --- a/chimere/templates/main_map.html +++ b/chimere/templates/main_map.html @@ -36,7 +36,7 @@ var p_zoom{%if p_zoom %} = {{p_zoom}}{%endif%}; var p_lat{%if p_lat %} = {{p_lat}}{%endif%}; var p_lon{%if p_lon %} = {{p_lon}}{%endif%}; var p_display_submited{%if p_display_submited %} = {{p_display_submited}}{%endif%}; -var p_checked_categories{%if p_checked_categories %} = [{{p_checked_categories}}];{%endif%} +var p_checked_categories{%if p_checked_categories %} = [{{p_checked_categories}}]{%endif%}; var p_current_feature{% if p_current_feature %} = {{p_current_feature}}{%endif%}; init(); // --> </script>{% endblock %} |