I’ve implemented a table of meetings with rows which can be clicked on in order to go directly to the meeting page associated with that row.
The first column contains a map-marker which when clicked on should fire up google maps, but it doesn’t.
Any ideas what I’m doing incorrectly?
{{#each meeting in meetings}}
{{#link-to 'meetings.show' meeting tagName="tr"}}
<td><a {{bind-attr href=meeting.google}} target='_blank'>{{fa-icon 'map-marker'}}</a></td>
<td>{{meeting.city}}</td>
<td>{{meeting.weekday}}</td>
<td>{{meeting.address}}</td>
{{/link-to}}
{{/each}}