- From: Joe Pea <notifications@github.com>
- Date: Thu, 31 Jan 2019 09:14:30 -0800
- To: w3c/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 31 January 2019 17:14:53 UTC
F.e.,
```js
class MyEl extends HTMLElement {
constructor() {
if (/* isParsing? */) {
console.log('created during parsing')
}
}
connectedCallback() {
if (/* isParsing? */) {
console.log('connected during parsing')
}
}
}
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/789
Received on Thursday, 31 January 2019 17:14:53 UTC