mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import MirroringPopup from "./MirroringPopup.svelte";
|
|
|
|
const target = document.getElementById("root");
|
|
if (target) {
|
|
const mirroringPopup = new MirroringPopup({ target });
|
|
window.addEventListener("beforeunload", () => {
|
|
mirroringPopup.$destroy();
|
|
});
|
|
}
|