I understand that ng-app initializes a module in AngularJS as follows:
var app = angular.module(\'myApp\', []);
B
ng-app means: That page has Angular in it!
ng-app
ng-app="module" means: That page has Angular in it and necessary controls/services/etc are defined in that module.
ng-app="module"