2022-03-18 22:35:45 +00:00
|
|
|
async function polyfill() {
|
|
|
|
const { hydrateShadowRoots } = await import(
|
|
|
|
'@webcomponents/template-shadowroot/template-shadowroot.js'
|
|
|
|
);
|
2022-05-31 15:41:24 +00:00
|
|
|
window.addEventListener('DOMContentLoaded', () => hydrateShadowRoots(document.body), {
|
|
|
|
once: true,
|
|
|
|
});
|
2022-03-18 22:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const polyfillCheckEl = new DOMParser()
|
|
|
|
.parseFromString(`<p><template shadowroot="open"></template></p>`, 'text/html', {
|
|
|
|
includeShadowRoots: true,
|
|
|
|
})
|
|
|
|
.querySelector('p');
|
|
|
|
|
|
|
|
if (!polyfillCheckEl || !polyfillCheckEl.shadowRoot) {
|
|
|
|
polyfill();
|
|
|
|
}
|