From 9babe7167e6945f722c1f322c8fed53aaa87c099 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 7 Jan 2016 15:56:09 -0800 Subject: [PATCH] [API] Enable strict DI ...to facilitate detection of any issues with optimizability of legacy support for imperative registration. --- platform/framework/src/bootstrap/ApplicationBootstrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/framework/src/bootstrap/ApplicationBootstrapper.js b/platform/framework/src/bootstrap/ApplicationBootstrapper.js index f191bbbdaa..490017885a 100644 --- a/platform/framework/src/bootstrap/ApplicationBootstrapper.js +++ b/platform/framework/src/bootstrap/ApplicationBootstrapper.js @@ -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 }); }); };