diff --git a/app/index-async.html b/app/index-async.html index b530660425..44c82202c6 100644 --- a/app/index-async.html +++ b/app/index-async.html @@ -36,8 +36,11 @@ 'js/filters.js', 'js/directives.js' ], function() { - // when all is done, execute bootstrap angular application - angular.bootstrap(document, ['myApp']); + // add an artificial delay to simulate first time cache hit. + window.setTimeout(function() { + // when all is done, execute bootstrap angular application + angular.bootstrap(document, ['myApp']); + }, 1000); });