mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] format
This commit is contained in:
parent
9807582b69
commit
829a6fadfa
1 changed files with 6 additions and 3 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Reference in a new issue