Mercurial > hg > ng2-query-ismi
annotate index.html @ 8:fa646ee46c19
more query generation.
author | casties |
---|---|
date | Mon, 18 Jan 2016 09:52:46 +0100 |
parents | 6cd6c09032aa |
children | 98b435bb6c0c |
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> | |
7
6cd6c09032aa
object type query with results!
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
1
diff
changeset
|
31 <query-app>Loading...</query-app> |
0 | 32 </body> |
33 | |
34 </html> |