From 5fd1d21680d0488e4120ece857614f0db0c4383c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Rodr=C3=ADguez?= Date: Tue, 7 Feb 2017 03:56:45 +0100 Subject: [PATCH] docs(reactive-forms): fix plunkers (#3203) --- public/docs/_examples/reactive-forms/ts/plnkr.json | 1 + public/docs/_examples/reactive-forms/ts/src/index-final.html | 2 +- .../_examples/reactive-forms/ts/src/{app => }/main-final.ts | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) rename public/docs/_examples/reactive-forms/ts/src/{app => }/main-final.ts (78%) diff --git a/public/docs/_examples/reactive-forms/ts/plnkr.json b/public/docs/_examples/reactive-forms/ts/plnkr.json index 770a142c05..f0daeb4aad 100644 --- a/public/docs/_examples/reactive-forms/ts/plnkr.json +++ b/public/docs/_examples/reactive-forms/ts/plnkr.json @@ -1,5 +1,6 @@ { "description": "Angular Reactive Forms (Demo runner)", + "basePath": "src/", "files":[ "!**/*.d.ts", "!**/*.js", diff --git a/public/docs/_examples/reactive-forms/ts/src/index-final.html b/public/docs/_examples/reactive-forms/ts/src/index-final.html index 556891d495..9ef0a379e0 100644 --- a/public/docs/_examples/reactive-forms/ts/src/index-final.html +++ b/public/docs/_examples/reactive-forms/ts/src/index-final.html @@ -20,7 +20,7 @@ diff --git a/public/docs/_examples/reactive-forms/ts/src/app/main-final.ts b/public/docs/_examples/reactive-forms/ts/src/main-final.ts similarity index 78% rename from public/docs/_examples/reactive-forms/ts/src/app/main-final.ts rename to public/docs/_examples/reactive-forms/ts/src/main-final.ts index 1a5e243fa0..7572d1f1d3 100644 --- a/public/docs/_examples/reactive-forms/ts/src/app/main-final.ts +++ b/public/docs/_examples/reactive-forms/ts/src/main-final.ts @@ -1,5 +1,5 @@ // tslint:disable:no-unused-variable import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { AppModule } from './app.module'; +import { AppModule } from './app/app.module'; platformBrowserDynamic().bootstrapModule(AppModule);