mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
[PR] [Feature] Beastform Wildcards (#1247)
* Added support for wildcard paths in beastform token paths * Fixed browse dataSource
This commit is contained in:
parent
2d6390248f
commit
7055591a76
11 changed files with 176 additions and 2 deletions
4
templates/dialogs/image-select/footer.hbs
Normal file
4
templates/dialogs/image-select/footer.hbs
Normal 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>
|
||||
5
templates/dialogs/image-select/main.hbs
Normal file
5
templates/dialogs/image-select/main.hbs
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue