[Framework] Add bootstrapper

Add an application bootstrapper, responsible for
handling the Angular bootstrapping phase of
framework layer initialization. WTD-518.
This commit is contained in:
Victor Woeltjen
2014-11-04 13:00:12 -08:00
parent 24591c67dd
commit 8e31b2b6e0
3 changed files with 45 additions and 1 deletions

View File

@ -45,7 +45,7 @@ define(
return loader.loadBundles(bundleList)
.then(resolver.resolveBundles)
.then(registrar.registerExtensions)
.then(bootstrapper.bootstrapApplication);
.then(bootstrapper.bootstrap);
}