Re: [WICG/webcomponents] Need a callback for when children changed or parser finished parsing children (#809)

Are there any active plans to fix this?

Currently, I have to define part of my elements inside `DOMContentLoaded`. That's quite incorrect and don't handles all possible scenarios, but works in my case.

```javascript
window.addEventListener('DOMContentLoaded', () => {
  window.customElements.define('my-elem', MyElem);
});
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/WICG/webcomponents/issues/809#issuecomment-737669670

Received on Thursday, 3 December 2020 05:11:33 UTC