Skip to content
This repository was archived by the owner on Mar 5, 2024. It is now read-only.

Commit 84948d6

Browse files
committed
Fix the homepage now that gulp stuff is changed. Closes #23
1 parent 6a7cdde commit 84948d6

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Component, View, bootstrap, CORE_DIRECTIVES, NgStyle, FORM_DIRECTIVES, Self, Query, QueryList } from 'angular2/angular2';
2-
import {NgGrid, NgGridItem} from "./NgGrid";
2+
import {NgGrid, NgGridItem} from "NgGrid";
33
// import {NgTest} from "./NgTest";
44
// Annotation section
55
@Component({

src/index.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
</head>
99
<body>
1010
<my-app></my-app>
11-
<script>System.import('app');</script>
11+
<script>
12+
System.config({
13+
paths: {
14+
'app': 'app.js',
15+
'NgGrid': 'NgGrid.js'
16+
}
17+
});
18+
System.import('app');
19+
</script>
1220
</body>
1321
</html>

0 commit comments

Comments
 (0)