2016-06-07 19:06:25 -04:00
|
|
|
declare var angular: any;
|
2016-04-11 08:36:53 -04:00
|
|
|
|
|
|
|
angular.module('heroApp', [])
|
|
|
|
.controller('MainCtrl', function() {
|
|
|
|
this.message = 'Hello world';
|
|
|
|
});
|
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
// #docregion bootstrap
|
|
|
|
angular.bootstrap(document.body, ['heroApp'], {strictDi: true});
|
|
|
|
// #enddocregion bootstrap
|
|
|
|
});
|