Add drag&drop to data bank

This commit is contained in:
Cohee
2024-04-24 01:51:54 +03:00
parent 71f41d5233
commit b6b9b542d7
3 changed files with 71 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
<div class="flex-container justifyCenter alignItemsCenter">
<span>Save <span class="droppedFilesCount">{{count}}</span> file(s) to...</span>
<select class="droppedFilesTarget">
{{#each targets}}
<option value="{{this}}">{{this}}</option>
{{/each}}
</select>
</div>