17 lines
366 B
TypeScript
17 lines
366 B
TypeScript
// #docregion bootstrap
|
|
import { upgradeAdapter } from './upgrade_adapter';
|
|
|
|
// #enddocregion bootstrap
|
|
|
|
declare var angular: any;
|
|
|
|
angular.module('heroApp', [])
|
|
.controller('MainCtrl', function() {
|
|
this.message = 'Hello world';
|
|
});
|
|
|
|
// #docregion bootstrap
|
|
|
|
upgradeAdapter.bootstrap(document.body, ['heroApp'], {strictDi: true});
|
|
// #enddocregion bootstrap
|