2016-11-12 16:06:02 +00:00

11 lines
295 B
TypeScript

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