Mercurial > hg > ng2-query-ismi
annotate src/index.html @ 57:d7c947909ab8 ng2-table
renamed query-app.module to app.module. loading query from url fragment works now.
| author | casties |
|---|---|
| date | Wed, 29 Mar 2017 17:16:10 +0200 |
| parents | b65a031c4967 |
| children | 7b9d616695d3 |
| rev | line source |
|---|---|
| 0 | 1 <html> |
| 2 <head> | |
| 41 | 3 <meta charset="utf-8" /> |
|
13
98b435bb6c0c
more query work.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
7
diff
changeset
|
4 <title>ISMI Query Builder</title> |
| 0 | 5 |
| 25 | 6 <!--link to bootstrap.css--> |
| 7 <link rel="stylesheet" href="assets/css/prism-okaidia.css"> | |
| 38 | 8 <link rel="stylesheet" href="assets/css/bootstrap-3.3.5.min.css"> |
| 9 <link rel="stylesheet" type="text/css" href="assets/css/jquery.dataTables-1.10.9.css"> | |
| 25 | 10 <link rel="stylesheet" href="assets/css/style.css"> |
| 11 | |
|
47
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
41
diff
changeset
|
12 <!-- Polyfill(s) for older browsers --> |
|
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
41
diff
changeset
|
13 <script src="node_modules/core-js/client/shim.min.js"></script> |
| 0 | 14 |
|
47
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
41
diff
changeset
|
15 <script src="node_modules/zone.js/dist/zone.js"></script> |
|
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
41
diff
changeset
|
16 <script src="node_modules/systemjs/dist/system.src.js"></script> |
|
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
41
diff
changeset
|
17 |
|
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
41
diff
changeset
|
18 <script src="systemjs.config.js"></script> |
| 0 | 19 <script> |
|
47
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
41
diff
changeset
|
20 System.import('main.js').catch(function(err){ console.error(err); }); |
| 0 | 21 </script> |
| 22 </head> | |
| 23 | |
| 24 <!-- 3. Display the application --> | |
| 25 <body> | |
|
13
98b435bb6c0c
more query work.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
7
diff
changeset
|
26 <query-app>Loading... Query Builder</query-app> |
| 0 | 27 </body> |
| 28 | |
| 29 </html> |
