Generally, I\'d do the following and there would be an ng-app in my HTML:
ng-app
var myApp = angular.module(\"myApp\", []); myApp.controller(\"AttributeCt
I don't know if this is just in the example code you have here but:
angular.bootstrap($("#angularApp", ["myApp"]));
should be
angular.bootstrap($("#angularApp"), ["myApp"]);
Your code for retrieving the module should work.