Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 5fd1d21

Browse files
Foxandxsswardbell
authored andcommitted
docs(reactive-forms): fix plunkers (#3203)
1 parent 968fe62 commit 5fd1d21

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

public/docs/_examples/reactive-forms/ts/plnkr.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"description": "Angular Reactive Forms (Demo runner)",
3+
"basePath": "src/",
34
"files":[
45
"!**/*.d.ts",
56
"!**/*.js",

public/docs/_examples/reactive-forms/ts/src/index-final.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<script src="systemjs.config.js"></script>
2222
<script>
23-
System.import('app/main-final').catch(function(err){ console.error(err); });
23+
System.import('main-final.js').catch(function(err){ console.error(err); });
2424
</script>
2525
</head>
2626

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// tslint:disable:no-unused-variable
22
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
3-
import { AppModule } from './app.module';
3+
import { AppModule } from './app/app.module';
44

55
platformBrowserDynamic().bootstrapModule(AppModule);

0 commit comments

Comments
 (0)