Task w. what you are trying to solve is that if you use something like ng-includeor ui-router , then you won’t know when they will complete the download until they are requested and loaded. This is a script on demand.
- angular? , - / angular:
angular.module('app', [ ... any ng-dependencies here ...])
.controller(...)
.controller(...)
.directive(...)
.service(...)
.run( function(){
})
- angular