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

Starting implementing the maintenance popup element for media boxes

This commit is contained in:
2024-03-28 02:30:16 +04:00
parent 1b493e4f7e
commit 8026f16b23
2 changed files with 122 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
import "$styles/content/listing.scss";
import "$lib/web-components/TagEditorComponent.js";
import "$lib/web-components/MaintenancePopupComponent.js";
document.querySelectorAll('.media-box').forEach(mediaBoxElement => {
mediaBoxElement.appendChild(
document.createElement('maintenance-popup')
);
});