This commit was worked on by a number of people including @filipesilva, @gkalpak and @wardbell. It contains changes that: * remove unused files, * fix the bootstrap approach to ensure that bootstrap is in the correct Zone * fix unclosed code-example tags * replace use of "we" with "you" * remove broken dual router example Related to angular/angular.io#3541
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
declare var angular: angular.IAngularStatic;
|
|
import { NgModule } from '@angular/core';
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { UpgradeModule, downgradeComponent } from '@angular/upgrade/static';
|
|
|
|
import { heroDetail, HeroDetailDirective } from './hero-detail.component';
|
|
import { ContainerComponent } from './container.component';
|
|
|
|
// #docregion heroupgrade
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
UpgradeModule
|
|
],
|
|
declarations: [
|
|
ContainerComponent,
|
|
HeroDetailDirective
|
|
],
|
|
entryComponents: [
|
|
ContainerComponent
|
|
]
|
|
})
|
|
export class AppModule {
|
|
constructor(private upgrade: UpgradeModule) { }
|
|
ngDoBootstrap() {
|
|
this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true });
|
|
}
|
|
}
|
|
// #enddocregion heroupgrade
|
|
|
|
angular.module('heroApp', [])
|
|
.component('heroDetail', heroDetail)
|
|
.directive(
|
|
'myContainer',
|
|
downgradeComponent({component: ContainerComponent}) as angular.IDirectiveFactory
|
|
);
|
|
|
|
platformBrowserDynamic().bootstrapModule(AppModule);
|