Skip to content

Commit

Permalink
Merge 5bac029 into d868fb9
Browse files Browse the repository at this point in the history
  • Loading branch information
mumptastic committed Mar 23, 2021
2 parents d868fb9 + 5bac029 commit 1b451ad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export class AppModule {
registerCustomElements(this.injector, WVR_ELEMENTS);
showHiddentContent(this.injector);
wvrTimeout(() => {
document.querySelector('body').style.display = 'block';
const bodyElm = document.querySelector('body');
bodyElm.style.display = 'block';
bodyElm.classList.remove('wvr-hidden');
});
}

Expand Down

0 comments on commit 1b451ad

Please sign in to comment.