Mercurial > hg > ng2-query-ismi
annotate index.html @ 1:59b7c3afcc6b
first interface and http request.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Mon, 11 Jan 2016 19:25:53 +0100 |
parents | 39ec75917ef7 |
children | 6cd6c09032aa |
rev | line source |
---|---|
0 | 1 <html> |
2 | |
3 <head> | |
4 <title>Angular 2 QuickStart</title> | |
5 | |
6 <!-- 1. Load libraries --> | |
7 <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script> | |
8 <script src="node_modules/systemjs/dist/system.src.js"></script> | |
9 <script src="node_modules/rxjs/bundles/Rx.js"></script> | |
10 <script src="node_modules/angular2/bundles/angular2.dev.js"></script> | |
1
59b7c3afcc6b
first interface and http request.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
0
diff
changeset
|
11 <script src="node_modules/angular2/bundles/http.dev.js"></script> |
0 | 12 |
13 <!-- 2. Configure SystemJS --> | |
14 <script> | |
15 System.config({ | |
16 packages: { | |
17 app: { | |
18 format: 'register', | |
19 defaultExtension: 'js' | |
20 } | |
21 } | |
22 }); | |
23 System.import('app/boot') | |
24 .then(null, console.error.bind(console)); | |
25 </script> | |
26 | |
27 </head> | |
28 | |
29 <!-- 3. Display the application --> | |
30 <body> | |
31 <my-text>Loading...</my-text> | |
32 </body> | |
33 | |
34 </html> |