Added support for wildcard paths in beastform token paths

This commit is contained in:
WBHarry 2025-11-08 18:30:36 +01:00
parent a7d035bcdb
commit 200349be3b
11 changed files with 171 additions and 2 deletions

View file

@ -0,0 +1,4 @@
<div class="footer">
<button data-action="close">{{localize "Cancel"}}</button>
<button type="button" data-action="finishSelection">{{localize "DAGGERHEART.APPLICATIONS.ImageSelect.selectImage"}}</button>
</div>

View file

@ -0,0 +1,5 @@
<div class="images-container">
{{#each images as |image|}}
<a data-action="selectImage"><img {{#if (eq image @root.selectedImage)}}class="selected"{{/if}} src="{{image}}" data-image="{{image}}" /></a>
{{/each}}
</div>