2021-07-13 07:27:40 -05:00
|
|
|
async function polyfill() {
|
2021-12-22 16:11:05 -05:00
|
|
|
const { hydrateShadowRoots } = await import('@webcomponents/template-shadowroot/template-shadowroot.js');
|
|
|
|
hydrateShadowRoots(document.body);
|
2021-07-13 07:27:40 -05:00
|
|
|
}
|
|
|
|
|
2021-07-19 20:24:59 -05:00
|
|
|
const polyfillCheckEl = new DOMParser().parseFromString(`<p><template shadowroot="open"></template></p>`, 'text/html', { includeShadowRoots: true }).querySelector('p');
|
2021-07-19 20:23:39 -05:00
|
|
|
|
|
|
|
if (!polyfillCheckEl || !polyfillCheckEl.shadowRoot) {
|
2021-12-22 16:11:05 -05:00
|
|
|
polyfill();
|
2021-07-19 20:23:39 -05:00
|
|
|
}
|