I have designed an Ember View for displaying pictures, where the view produces a hexagon using SVG. Now I want to display multiple pictures on the same page.
I integrate my view in a template like this:
{{view App.HexagonView width="68" height="60" image="http://placekitten.com/g/121/121"}}
Now when I integrate it once, it works great. When I integrate it twice, it only displays one. The error seams to come from the fact that Ember produces two HTML elements with the same ID, and so inserting the view content goes only to one HTML container. What's the Ember way to do this?