Skip to content
Snippets Groups Projects

Resolve "As a user, I want to see all trails across a town and seamlessly move between them."

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -14,8 +14,8 @@
<img class="trailsImages"
th:each="trail : ${trails}"
th:src="@{${trail.getImgPath()}}"
th:onclick="'updateOutputTrail('+ ${trail.id} +');'"
th:id="'img' + ${trail.getId()}" alt="IMG"
th:onclick="'updateOutputTrail('+ ${trail.getId()} +');'"
th:id="'img' + ${trail.getId()}" th:alt="${trail.getName()}"
>
</div>
</header>
Loading