2015-12-31 08:46:32 +02:00
|
|
|
// #docregion bootstrap
|
2016-05-03 14:06:32 +02:00
|
|
|
import { upgradeAdapter } from './upgrade_adapter';
|
2015-12-31 08:46:32 +02:00
|
|
|
|
|
|
|
// #enddocregion bootstrap
|
|
|
|
|
2016-06-08 01:06:25 +02:00
|
|
|
declare var angular: any;
|
2015-12-31 08:46:32 +02:00
|
|
|
|
|
|
|
angular.module('heroApp', [])
|
2016-04-11 15:36:53 +03:00
|
|
|
.controller('MainCtrl', function() {
|
|
|
|
this.message = 'Hello world';
|
|
|
|
});
|
2015-12-31 08:46:32 +02:00
|
|
|
|
|
|
|
// #docregion bootstrap
|
|
|
|
|
|
|
|
upgradeAdapter.bootstrap(document.body, ['heroApp'], {strictDi: true});
|
|
|
|
// #enddocregion bootstrap
|