2016-06-07 16:45:13 -07:00

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