1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-23 23:02:58 +00:00

Closing full screen viewer on click

This commit is contained in:
2024-06-23 15:07:16 +04:00
parent 1c5b87e3d4
commit eda7342144

View File

@@ -61,6 +61,10 @@ export class ImageShowFullscreenButton extends BaseComponent {
}
});
element.addEventListener('click', () => {
element.classList.remove('shown');
});
return element;
}
}