This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathindex.html
49 lines (48 loc) · 1.53 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!doctype html>
<html>
<head>
<title>ng2do</title>
<style media="screen">
html,
body {
margin: 0;
padding: 0;
}
body {
font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.4em;
background: #eaeaea url('css/bg.png');
color: #4d4d4d;
width: 550px;
margin: 0 auto;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
font-smoothing: antialiased;
}
</style>
<script src="https://github.jspm.io/jmcriffey/[email protected]/traceur-runtime.js"></script>
<script src="/node_modules/typescript/bin/typescript.js"></script>
<script src="/node_modules/systemjs/dist/system.src.js"></script>
<script src="https://code.angularjs.org/2.0.0-alpha.26/angular2.dev.js"></script>
<script src="/firebase/firebase.js"></script>
</head>
<body>
<todo-app>Loading...</todo-app>
<script>
System.config({
transpiler: "typescript",
typescriptOptions: {
emitDecoratorMetadata: true,
experimentalDecorators: true
}
});
System.paths = {
"firebase/angularfire": "firebase/angularfire.js",
"todo": "todo.ts"
};
System.import('todo');
</script>
</body>
</html>