[API] Enable strict DI

...to facilitate detection of any issues with
optimizability of legacy support for imperative
registration.
This commit is contained in:
Victor Woeltjen 2016-01-07 15:56:09 -08:00
parent 52579fefe1
commit 9babe7167e

View File

@ -59,7 +59,7 @@ define(
$log = this.$log;
$log.info("Bootstrapping application " + (app || {}).name);
angular.element(document).ready(function () {
angular.bootstrap(document, [app.name]);
angular.bootstrap(document, [app.name], { strictDi: true });
});
};