0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/integrations/lit/client-shim.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
428 B
JavaScript
Raw Normal View History

async function polyfill() {
const { hydrateShadowRoots } = await import(
'@webcomponents/template-shadowroot/template-shadowroot.js'
);
2022-05-31 10:41:24 -05:00
window.addEventListener('DOMContentLoaded', () => hydrateShadowRoots(document.body), {
once: true,
});
}
2024-05-29 15:01:22 -05:00
const polyfillCheckEl = Document.parseHTMLUnsafe(
`<p><template shadowrootmode="open"></template></p>`
).querySelector('p');
if (!polyfillCheckEl?.shadowRoot) {
polyfill();
}