Alexey Khatskelevich
Results
1
issues of
Alexey Khatskelevich
`detach()` removes my custom container from parent. But `attach()` add it to `` instead of parent ``` function detach(): void { const parent = container.parentNode; if (parent) { parent.removeChild(container); }...