diff --git a/app/node_views/results.html b/app/node_views/results.html index d8a0b57..78035fa 100644 --- a/app/node_views/results.html +++ b/app/node_views/results.html @@ -229,17 +229,17 @@ -
Wait the DOMContentLoaded event before executing Javascript.
-Choose between the HEAD and the end of the BODY for scripts. Do not execute Javascript in the middle of the BODY as it slows down the construction of the DOM and makes a poor maintainability. This is what i call spaghetti code.
-The JS Timeline tab can help you.
+This metric counts the number of DOM queries, DOM inserts, binds, etc. made by the Javascript before the DOMContentLoaded event.
+Wait for this event before manipulating the DOM. Do not execute Javascript in the middle of the BODY as it slows down the construction of the DOM and makes a poor maintainability. This is what i call spaghetti code.
+The JS Timeline tab can help you identify what's happening.