11 lines
		
	
	
		
			295 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			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
 | 
						|
});
 |