From 5d3bdd30dbe41a33ee8186c18e6a2582c31abace Mon Sep 17 00:00:00 2001 From: benunternaehrer Date: Wed, 20 Dec 2017 22:41:39 +0100 Subject: [PATCH] Update script tag with defer - Adding `defer` boolean attribute to the script tag. Without `defer` the script will block DOM parsing/rendering which slows down the page - Added a comment to the script tag: Has to be used with caution because it also blocks DOM rendering --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4789b0b..be1a790 100644 --- a/README.md +++ b/README.md @@ -82,11 +82,13 @@ Valid `` elements include `meta`, `link`, `title`, `style`, `script`, `nos /* ... */ - - + + + +