1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Implemented option to add the tag into active profile from dropdown

This commit is contained in:
2024-10-12 03:38:01 +04:00
parent f9cb73bafc
commit 38cb925fa4
3 changed files with 213 additions and 0 deletions

5
src/content/tags.js Normal file
View File

@@ -0,0 +1,5 @@
import {wrapTagDropdown} from "$lib/components/TagDropdownWrapper.js";
for (let tagDropdownElement of document.querySelectorAll('.tag.dropdown')) {
wrapTagDropdown(tagDropdownElement);
}