Scripts/resources/[custom_script]/nc-headbag/interface/index.js

8 lines
266 B
JavaScript
Raw Permalink Normal View History

2024-12-29 19:48:41 +00:00
window.addEventListener("message", (event) => {
let data = event.data;
if (data["action"] == "open") {
$(".container").css({"display": "block"});
} else if (data["action"] == "remove") {
$(".container").css({"display": "none"});
}
})