- From: Trey Shugart <notifications@github.com>
- Date: Wed, 17 May 2017 12:05:45 -0700
- To: w3c/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 17 May 2017 19:06:19 UTC
> The power dynamics of the current situation are really unusual, and don't seem to have any real advantages
Especially when you can just:
```js
const oldAttachShadow = HTMLElement.prototype.attachShadow;
HTMLElement.prototype.attachShadow = function () {
return oldAttachShadow.call(this, { mode: 'open' });
}
```
--
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/640#issuecomment-302197460
Received on Wednesday, 17 May 2017 19:06:19 UTC