Mercurial > hg > ng2-query-ismi
annotate index.html @ 16:7d82ca32833c
omit some attributes from list.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Thu, 21 Jan 2016 18:47:57 +0100 |
parents | 98b435bb6c0c |
children | 9343e43a17d1 |
rev | line source |
---|---|
0 | 1 <html> |
2 | |
3 <head> | |
13
98b435bb6c0c
more query work.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
7
diff
changeset
|
4 <title>ISMI Query Builder</title> |
0 | 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> | |
13
98b435bb6c0c
more query work.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
7
diff
changeset
|
31 <query-app>Loading... Query Builder</query-app> |
0 | 32 </body> |
33 | |
34 </html> |