aboutsummaryrefslogtreecommitdiffstats
path: root/perf/DCLvsWindowOnLoad.html
diff options
context:
space:
mode:
authorMisko Hevery2012-01-06 18:10:47 -0800
committerMisko Hevery2012-01-10 22:27:00 -0800
commit5143e7bf065a3cbdf8400cf095b653d51bc83b8f (patch)
tree980149c365d4cb5586d27975d26366a25ff7be6a /perf/DCLvsWindowOnLoad.html
parentafd25446d23f24872eb20ac79c8fbd2cff203ef0 (diff)
downloadangular.js-5143e7bf065a3cbdf8400cf095b653d51bc83b8f.tar.bz2
feat(module): new module loader
Diffstat (limited to 'perf/DCLvsWindowOnLoad.html')
-rw-r--r--perf/DCLvsWindowOnLoad.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/perf/DCLvsWindowOnLoad.html b/perf/DCLvsWindowOnLoad.html
index b44b9114..88a51ab2 100644
--- a/perf/DCLvsWindowOnLoad.html
+++ b/perf/DCLvsWindowOnLoad.html
@@ -5,13 +5,13 @@ This test demonstrates the time difference between document's DOMContentLoaded a
-->
<html>
- <head>
+ <head ng:app>
<script>
startTS = new Date().getTime();
onDOMContentLoadedTS = 0; // default for browsers where DOMCL is not supported
</script>
<title>DOMContentLoaded test</title>
- <script src="../build/angular.min.js" ng:autobind></script>
+ <script src="../build/angular.min.js"></script>
<script>
angular.element(document).bind('DOMContentLoaded', function(e) {onDOMContentLoadedTS = new Date().getTime()});
angular.element(window).bind('load', function(e) {
@@ -34,4 +34,4 @@ This test demonstrates the time difference between document's DOMContentLoaded a
<p id="log"></p>
</body>
-</html> \ No newline at end of file
+</html>