diff --git a/index.php b/index.php index 5fbc416..2738f4a 100644 --- a/index.php +++ b/index.php @@ -6,7 +6,7 @@ - > + > diff --git a/resources/scripts/app.js b/resources/scripts/app.js index 8c52438..11eb22a 100644 --- a/resources/scripts/app.js +++ b/resources/scripts/app.js @@ -1,12 +1,10 @@ import {domReady} from '@scripts/components'; /** - * Remove `.no-js` from document body - * when DOM has loaded. + * Run the application when the DOM is ready. */ domReady(() => { - document.body.classList.contains('no-js') && - document.body.classList.remove('no-js'); + // Application code. }); /**