mirror of
https://github.com/wah-su/mstickers.git
synced 2025-04-05 07:44:35 +00:00
13 lines
389 B
JavaScript
13 lines
389 B
JavaScript
const ElementInstructionOV = document.getElementById(
|
|
"preview_sticker_pack_add_to_element_overlay"
|
|
);
|
|
const ElementInstruction = document.getElementById(
|
|
"preview_sticker_pack_add_to_element"
|
|
);
|
|
|
|
function toggleElementInstruction() {
|
|
ElementInstructionOV.classList.toggle("hidden");
|
|
ElementInstruction.classList.toggle("hidden");
|
|
|
|
ElementInstruction.classList.toggle("flex");
|
|
}
|