661 lines
17 KiB
HTML
661 lines
17 KiB
HTML
|
<html lang="en"><head></head><body><form id="mainForm" method="post" action="http://plnkr.co/edit/?p=preview" target="_self"><input type="hidden" name="files[app/app-routing.module.ts]" value="import { NgModule } from '@angular/core';
|
||
|
import { RouterModule, Routes } from '@angular/router';
|
||
|
|
||
|
import { DashboardComponent } from './dashboard.component';
|
||
|
import { HeroesComponent } from './heroes.component';
|
||
|
import { HeroDetailComponent } from './hero-detail.component';
|
||
|
|
||
|
const routes: Routes = [
|
||
|
{ path: '', redirectTo: '/dashboard', pathMatch: 'full' },
|
||
|
{ path: 'dashboard', component: DashboardComponent },
|
||
|
{ path: 'detail/:id', component: HeroDetailComponent },
|
||
|
{ path: 'heroes', component: HeroesComponent }
|
||
|
];
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [ RouterModule.forRoot(routes) ],
|
||
|
exports: [ RouterModule ]
|
||
|
})
|
||
|
export class AppRoutingModule {}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/app.component.ts]" value="import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
moduleId: module.id,
|
||
|
selector: 'my-app',
|
||
|
template: `
|
||
|
<h1>{{title}}</h1>
|
||
|
<nav>
|
||
|
<a routerLink="/dashboard" routerLinkActive="active">Dashboard</a>
|
||
|
<a routerLink="/heroes" routerLinkActive="active">Heroes</a>
|
||
|
</nav>
|
||
|
<router-outlet></router-outlet>
|
||
|
`,
|
||
|
styleUrls: ['./app.component.css'],
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
title = 'Tour of Heroes';
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/app.module.ts]" value="import { NgModule } from '@angular/core';
|
||
|
import { BrowserModule } from '@angular/platform-browser';
|
||
|
import { FormsModule } from '@angular/forms';
|
||
|
|
||
|
import { AppComponent } from './app.component';
|
||
|
import { DashboardComponent } from './dashboard.component';
|
||
|
import { HeroDetailComponent } from './hero-detail.component';
|
||
|
import { HeroesComponent } from './heroes.component';
|
||
|
import { HeroService } from './hero.service';
|
||
|
|
||
|
import { AppRoutingModule } from './app-routing.module';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
BrowserModule,
|
||
|
FormsModule,
|
||
|
AppRoutingModule
|
||
|
],
|
||
|
declarations: [
|
||
|
AppComponent,
|
||
|
DashboardComponent,
|
||
|
HeroDetailComponent,
|
||
|
HeroesComponent
|
||
|
],
|
||
|
providers: [ HeroService ],
|
||
|
bootstrap: [ AppComponent ]
|
||
|
})
|
||
|
export class AppModule { }
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/dashboard.component.ts]" value="import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
import { Hero } from './hero';
|
||
|
import { HeroService } from './hero.service';
|
||
|
|
||
|
@Component({
|
||
|
moduleId: module.id,
|
||
|
selector: 'my-dashboard',
|
||
|
templateUrl: './dashboard.component.html',
|
||
|
styleUrls: [ './dashboard.component.css' ]
|
||
|
})
|
||
|
export class DashboardComponent implements OnInit {
|
||
|
|
||
|
heroes: Hero[] = [];
|
||
|
|
||
|
constructor(private heroService: HeroService) { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
this.heroService.getHeroes()
|
||
|
.then(heroes => this.heroes = heroes.slice(1, 5));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/hero-detail.component.ts]" value="import 'rxjs/add/operator/switchMap';
|
||
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { ActivatedRoute, Params } from '@angular/router';
|
||
|
import { Location } from '@angular/common';
|
||
|
|
||
|
import { Hero } from './hero';
|
||
|
import { HeroService } from './hero.service';
|
||
|
@Component({
|
||
|
moduleId: module.id,
|
||
|
selector: 'my-hero-detail',
|
||
|
templateUrl: './hero-detail.component.html',
|
||
|
styleUrls: [ './hero-detail.component.css' ]
|
||
|
})
|
||
|
export class HeroDetailComponent implements OnInit {
|
||
|
hero: Hero;
|
||
|
|
||
|
constructor(
|
||
|
private heroService: HeroService,
|
||
|
private route: ActivatedRoute,
|
||
|
private location: Location
|
||
|
) {}
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
this.route.params
|
||
|
.switchMap((params: Params) => this.heroService.getHero(+params['id']))
|
||
|
.subscribe(hero => this.hero = hero);
|
||
|
}
|
||
|
|
||
|
goBack(): void {
|
||
|
this.location.back();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/hero.service.ts]" value="import { Hero } from './hero';
|
||
|
import { HEROES } from './mock-heroes';
|
||
|
import { Injectable } from '@angular/core';
|
||
|
|
||
|
@Injectable()
|
||
|
export class HeroService {
|
||
|
getHeroes(): Promise<Hero[]> {
|
||
|
return Promise.resolve(HEROES);
|
||
|
}
|
||
|
|
||
|
getHeroesSlowly(): Promise<Hero[]> {
|
||
|
return new Promise(resolve => {
|
||
|
// Simulate server latency with 2 second delay
|
||
|
setTimeout(() => resolve(this.getHeroes()), 2000);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
getHero(id: number): Promise<Hero> {
|
||
|
return this.getHeroes()
|
||
|
.then(heroes => heroes.find(hero => hero.id === id));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/hero.ts]" value="export class Hero {
|
||
|
id: number;
|
||
|
name: string;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/heroes.component.ts]" value="import { Component, OnInit } from '@angular/core';
|
||
|
import { Router } from '@angular/router';
|
||
|
|
||
|
import { Hero } from './hero';
|
||
|
import { HeroService } from './hero.service';
|
||
|
|
||
|
@Component({
|
||
|
moduleId: module.id,
|
||
|
selector: 'my-heroes',
|
||
|
templateUrl: './heroes.component.html',
|
||
|
styleUrls: [ './heroes.component.css' ]
|
||
|
})
|
||
|
export class HeroesComponent implements OnInit {
|
||
|
heroes: Hero[];
|
||
|
selectedHero: Hero;
|
||
|
|
||
|
constructor(
|
||
|
private router: Router,
|
||
|
private heroService: HeroService) { }
|
||
|
|
||
|
getHeroes(): void {
|
||
|
this.heroService.getHeroes().then(heroes => this.heroes = heroes);
|
||
|
}
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
this.getHeroes();
|
||
|
}
|
||
|
|
||
|
onSelect(hero: Hero): void {
|
||
|
this.selectedHero = hero;
|
||
|
}
|
||
|
|
||
|
gotoDetail(): void {
|
||
|
this.router.navigate(['/detail', this.selectedHero.id]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/mock-heroes.ts]" value="import { Hero } from './hero';
|
||
|
|
||
|
export var HEROES: Hero[] = [
|
||
|
{id: 11, name: 'Mr. Nice'},
|
||
|
{id: 12, name: 'Narco'},
|
||
|
{id: 13, name: 'Bombasto'},
|
||
|
{id: 14, name: 'Celeritas'},
|
||
|
{id: 15, name: 'Magneta'},
|
||
|
{id: 16, name: 'RubberMan'},
|
||
|
{id: 17, name: 'Dynama'},
|
||
|
{id: 18, name: 'Dr IQ'},
|
||
|
{id: 19, name: 'Magma'},
|
||
|
{id: 20, name: 'Tornado'}
|
||
|
];
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[main.ts]" value="// main entry point
|
||
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
||
|
import { AppModule } from './app/app.module';
|
||
|
|
||
|
platformBrowserDynamic().bootstrapModule(AppModule);
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/app.component.css]" value="h1 {
|
||
|
font-size: 1.2em;
|
||
|
color: #999;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
h2 {
|
||
|
font-size: 2em;
|
||
|
margin-top: 0;
|
||
|
padding-top: 0;
|
||
|
}
|
||
|
nav a {
|
||
|
padding: 5px 10px;
|
||
|
text-decoration: none;
|
||
|
margin-top: 10px;
|
||
|
display: inline-block;
|
||
|
background-color: #eee;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
nav a:visited, a:link {
|
||
|
color: #607D8B;
|
||
|
}
|
||
|
nav a:hover {
|
||
|
color: #039be5;
|
||
|
background-color: #CFD8DC;
|
||
|
}
|
||
|
nav a.active {
|
||
|
color: #039be5;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/dashboard.component.css]" value="[class*='col-'] {
|
||
|
float: left;
|
||
|
padding-right: 20px;
|
||
|
padding-bottom: 20px;
|
||
|
}
|
||
|
[class*='col-']:last-of-type {
|
||
|
padding-right: 0;
|
||
|
}
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
*, *:after, *:before {
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
h3 {
|
||
|
text-align: center; margin-bottom: 0;
|
||
|
}
|
||
|
h4 {
|
||
|
position: relative;
|
||
|
}
|
||
|
.grid {
|
||
|
margin: 0;
|
||
|
}
|
||
|
.col-1-4 {
|
||
|
width: 25%;
|
||
|
}
|
||
|
.module {
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
color: #eee;
|
||
|
max-height: 120px;
|
||
|
min-width: 120px;
|
||
|
background-color: #607D8B;
|
||
|
border-radius: 2px;
|
||
|
}
|
||
|
.module:hover {
|
||
|
background-color: #EEE;
|
||
|
cursor: pointer;
|
||
|
color: #607d8b;
|
||
|
}
|
||
|
.grid-pad {
|
||
|
padding: 10px 0;
|
||
|
}
|
||
|
.grid-pad > [class*='col-']:last-of-type {
|
||
|
padding-right: 20px;
|
||
|
}
|
||
|
@media (max-width: 600px) {
|
||
|
.module {
|
||
|
font-size: 10px;
|
||
|
max-height: 75px; }
|
||
|
}
|
||
|
@media (max-width: 1024px) {
|
||
|
.grid {
|
||
|
margin: 0;
|
||
|
}
|
||
|
.module {
|
||
|
min-width: 60px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/hero-detail.component.css]" value="label {
|
||
|
display: inline-block;
|
||
|
width: 3em;
|
||
|
margin: .5em 0;
|
||
|
color: #607D8B;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
input {
|
||
|
height: 2em;
|
||
|
font-size: 1em;
|
||
|
padding-left: .4em;
|
||
|
}
|
||
|
button {
|
||
|
margin-top: 20px;
|
||
|
font-family: Arial;
|
||
|
background-color: #eee;
|
||
|
border: none;
|
||
|
padding: 5px 10px;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer; cursor: hand;
|
||
|
}
|
||
|
button:hover {
|
||
|
background-color: #cfd8dc;
|
||
|
}
|
||
|
button:disabled {
|
||
|
background-color: #eee;
|
||
|
color: #ccc;
|
||
|
cursor: auto;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/heroes.component.css]" value=".selected {
|
||
|
background-color: #CFD8DC !important;
|
||
|
color: white;
|
||
|
}
|
||
|
.heroes {
|
||
|
margin: 0 0 2em 0;
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
width: 15em;
|
||
|
}
|
||
|
.heroes li {
|
||
|
cursor: pointer;
|
||
|
position: relative;
|
||
|
left: 0;
|
||
|
background-color: #EEE;
|
||
|
margin: .5em;
|
||
|
padding: .3em 0;
|
||
|
height: 1.6em;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
.heroes li:hover {
|
||
|
color: #607D8B;
|
||
|
background-color: #DDD;
|
||
|
left: .1em;
|
||
|
}
|
||
|
.heroes li.selected:hover {
|
||
|
background-color: #BBD8DC !important;
|
||
|
color: white;
|
||
|
}
|
||
|
.heroes .text {
|
||
|
position: relative;
|
||
|
top: -3px;
|
||
|
}
|
||
|
.heroes .badge {
|
||
|
display: inline-block;
|
||
|
font-size: small;
|
||
|
color: white;
|
||
|
padding: 0.8em 0.7em 0 0.7em;
|
||
|
background-color: #607D8B;
|
||
|
line-height: 1em;
|
||
|
position: relative;
|
||
|
left: -1px;
|
||
|
top: -4px;
|
||
|
height: 1.8em;
|
||
|
margin-right: .8em;
|
||
|
border-radius: 4px 0 0 4px;
|
||
|
}
|
||
|
button {
|
||
|
font-family: Arial;
|
||
|
background-color: #eee;
|
||
|
border: none;
|
||
|
padding: 5px 10px;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
cursor: hand;
|
||
|
}
|
||
|
button:hover {
|
||
|
background-color: #cfd8dc;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[styles.css]" value="/* Master Styles */
|
||
|
h1 {
|
||
|
color: #369;
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
font-size: 250%;
|
||
|
}
|
||
|
h2, h3 {
|
||
|
color: #444;
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
font-weight: lighter;
|
||
|
}
|
||
|
body {
|
||
|
margin: 2em;
|
||
|
}
|
||
|
body, input[text], button {
|
||
|
color: #888;
|
||
|
font-family: Cambria, Georgia;
|
||
|
}
|
||
|
a {
|
||
|
cursor: pointer;
|
||
|
cursor: hand;
|
||
|
}
|
||
|
button {
|
||
|
font-family: Arial;
|
||
|
background-color: #eee;
|
||
|
border: none;
|
||
|
padding: 5px 10px;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
cursor: hand;
|
||
|
}
|
||
|
button:hover {
|
||
|
background-color: #cfd8dc;
|
||
|
}
|
||
|
button:disabled {
|
||
|
background-color: #eee;
|
||
|
color: #aaa;
|
||
|
cursor: auto;
|
||
|
}
|
||
|
|
||
|
/* Navigation link styles */
|
||
|
nav a {
|
||
|
padding: 5px 10px;
|
||
|
text-decoration: none;
|
||
|
margin-right: 10px;
|
||
|
margin-top: 10px;
|
||
|
display: inline-block;
|
||
|
background-color: #eee;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
nav a:visited, a:link {
|
||
|
color: #607D8B;
|
||
|
}
|
||
|
nav a:hover {
|
||
|
color: #039be5;
|
||
|
background-color: #CFD8DC;
|
||
|
}
|
||
|
nav a.active {
|
||
|
color: #039be5;
|
||
|
}
|
||
|
|
||
|
/* items class */
|
||
|
.items {
|
||
|
margin: 0 0 2em 0;
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
width: 24em;
|
||
|
}
|
||
|
.items li {
|
||
|
cursor: pointer;
|
||
|
position: relative;
|
||
|
left: 0;
|
||
|
background-color: #EEE;
|
||
|
margin: .5em;
|
||
|
padding: .3em 0;
|
||
|
height: 1.6em;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
.items li:hover {
|
||
|
color: #607D8B;
|
||
|
background-color: #DDD;
|
||
|
left: .1em;
|
||
|
}
|
||
|
.items li.selected {
|
||
|
background-color: #CFD8DC;
|
||
|
color: white;
|
||
|
}
|
||
|
.items li.selected:hover {
|
||
|
background-color: #BBD8DC;
|
||
|
}
|
||
|
.items .text {
|
||
|
position: relative;
|
||
|
top: -3px;
|
||
|
}
|
||
|
.items .badge {
|
||
|
display: inline-block;
|
||
|
font-size: small;
|
||
|
color: white;
|
||
|
padding: 0.8em 0.7em 0 0.7em;
|
||
|
background-color: #607D8B;
|
||
|
line-height: 1em;
|
||
|
position: relative;
|
||
|
left: -1px;
|
||
|
top: -4px;
|
||
|
height: 1.8em;
|
||
|
margin-right: .8em;
|
||
|
border-radius: 4px 0 0 4px;
|
||
|
}
|
||
|
/* everywhere else */
|
||
|
* {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
*/"><input type="hidden" name="files[app/dashboard.component.html]" value="<h3>Top Heroes</h3>
|
||
|
<div class="grid grid-pad">
|
||
|
<a *ngFor="let hero of heroes" [routerLink]="['/detail', hero.id]" class="col-1-4">
|
||
|
<div class="module hero">
|
||
|
<h4>{{hero.name}}</h4>
|
||
|
</div>
|
||
|
</a>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
-->"><input type="hidden" name="files[app/hero-detail.component.html]" value="<div *ngIf="hero">
|
||
|
<h2>{{hero.name}} details!</h2>
|
||
|
<div>
|
||
|
<label>id: </label>{{hero.id}}</div>
|
||
|
<div>
|
||
|
<label>name: </label>
|
||
|
<input [(ngModel)]="hero.name" placeholder="name" />
|
||
|
</div>
|
||
|
<button (click)="goBack()">Back</button>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
-->"><input type="hidden" name="files[app/heroes.component.html]" value="<h2>My Heroes</h2>
|
||
|
<ul class="heroes">
|
||
|
<li *ngFor="let hero of heroes"
|
||
|
[class.selected]="hero === selectedHero"
|
||
|
(click)="onSelect(hero)">
|
||
|
<span class="badge">{{hero.id}}</span> {{hero.name}}
|
||
|
</li>
|
||
|
</ul>
|
||
|
<div *ngIf="selectedHero">
|
||
|
<h2>
|
||
|
{{selectedHero.name | uppercase}} is my hero
|
||
|
</h2>
|
||
|
<button (click)="gotoDetail()">View Details</button>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
-->"><input type="hidden" name="files[index.html]" value="<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>document.write('<base href="' + document.location + '" />');</script>
|
||
|
<title>Angular Tour of Heroes</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
<!-- Polyfills -->
|
||
|
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
|
||
|
|
||
|
<script src="https://unpkg.com/zone.js@0.7.4?main=browser"></script>
|
||
|
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
|
||
|
|
||
|
<script src="https://cdn.rawgit.com/angular/angular.io/b3c65a9/public/docs/_examples/_boilerplate/systemjs.config.web.js"></script>
|
||
|
<script>
|
||
|
System.import('main.js').catch(function(err){ console.error(err); });
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<my-app>Loading...</my-app>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright 2016 Google Inc. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at http://angular.io/license
|
||
|
-->"><input type="hidden" name="tags[0]" value="angular"><input type="hidden" name="tags[1]" value="example"><input type="hidden" name="tags[2]" value="tutorial"><input type="hidden" name="tags[3]" value="tour"><input type="hidden" name="tags[4]" value="heroes"><input type="hidden" name="tags[5]" value="router"><input type="hidden" name="private" value="true"><input type="hidden" name="description" value="Angular Example - Tour of Heroes: Part 5"></form><script>document.getElementById("mainForm").submit();</script></body></html>
|