0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

[ci] format

This commit is contained in:
Fred K. Schott 2023-12-05 11:03:42 +00:00 committed by astrobot-houston
parent 9807582b69
commit 829a6fadfa

View file

@ -279,9 +279,12 @@ export class AstroDevOverlay extends HTMLElement {
// Init plugin lazily, so that the page can load faster.
// Fallback to setTimeout for Safari (sad!)
if ('requestIdleCallback' in window) {
window.requestIdleCallback(async () => {
this.plugins.map((plugin) => this.initPlugin(plugin));
}, {timeout: 300});
window.requestIdleCallback(
async () => {
this.plugins.map((plugin) => this.initPlugin(plugin));
},
{ timeout: 300 }
);
} else {
setTimeout(async () => {
this.plugins.map((plugin) => this.initPlugin(plugin));