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

Commit

Permalink
Refactored files to fit new folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Feb 8, 2017
1 parent 6dda55c commit cf36dc9
Show file tree
Hide file tree
Showing 29 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions public/docs/_examples/rxjs/ts/plnkr.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"description": "RxJS",
"basePath": "src/",
"files":[
"!**/*.d.ts",
"!**/*.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
<!-- #docregion -->
<html>
<head>

<!-- Set the base href -->
<base href="/">

<title>RxJS in Angular</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand All @@ -13,12 +15,11 @@
<script src="node_modules/core-js/client/shim.min.js"></script>

<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>

<script src="systemjs.config.js"></script>
<script>
System.import('app')
System.import('main.js')
.catch(function(err){ console.error(err); });
</script>
</head>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// #docregion
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app.module';
import { AppModule } from './app/app.module';

platformBrowserDynamic().bootstrapModule(AppModule);

0 comments on commit cf36dc9

Please sign in to comment.