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 }); }); };