Last active
May 16, 2018 05:59
-
-
Save hideya/8996e0f3f197203e114e8c3d9c2273f5 to your computer and use it in GitHub Desktop.
Revisions
-
hideya renamed this gist
May 16, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
hideya revised this gist
May 16, 2018 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,5 +2,4 @@ window.addEventListener("load", function() { var perfData = window.performance.timing; var renderTime = perfData.domComplete - perfData.domLoading; console.log(renderTime); }); -
hideya created this gist
May 16, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ window.addEventListener("load", function() { var perfData = window.performance.timing; var renderTime = perfData.domComplete - perfData.domLoading; console.log(renderTime); alert(renderTime); });