Author: dom Date: 2006-03-05 22:43:36 +0000 (Sun, 05 Mar 2006) New Revision: 746
Modified: trunk/templates/map_index.tt Log: Fix template error introduced as part of (references #87)
Modified: trunk/templates/map_index.tt =================================================================== --- trunk/templates/map_index.tt 2006-03-05 21:40:46 UTC (rev 745) +++ trunk/templates/map_index.tt 2006-03-05 22:43:36 UTC (rev 746) @@ -42,7 +42,7 @@ [% IF metadata.source %] [% source_url = metadata.source.list.first.match('^(.*?)?(?:?|$)').first %] [% END %] - var htmlString[% i %] = "<a href="?[% node.param %]">[% node.name %]</a> <a style='text-decoration:none;' href="%[ source_url %]?id=[% node.param %];action=edit">(edit)</a><br />[% metadata.address.list.first %]<br />[% metadata.city.list.first %]"; + var htmlString[% i %] = "<a href="?[% node.param %]">[% node.name %]</a> <a style='text-decoration:none;' href="[% source_url %]?id=[% node.param %];action=edit">(edit)</a><br />[% metadata.address.list.first %]<br />[% metadata.city.list.first %]"; GEvent.addListener(marker[% i %], "click", function() { marker[% i %].openInfoWindowHtml(htmlString[% i %]); });