Mercurial > hg > ng2-query-ismi
view index.html @ 18:65bb467abcc6
inverse relations are now generated on the fly.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Thu, 21 Jan 2016 20:07:32 +0100 |
parents | 98b435bb6c0c |
children | 9343e43a17d1 |
line wrap: on
line source
<html> <head> <title>ISMI Query Builder</title> <!-- 1. Load libraries --> <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="node_modules/rxjs/bundles/Rx.js"></script> <script src="node_modules/angular2/bundles/angular2.dev.js"></script> <script src="node_modules/angular2/bundles/http.dev.js"></script> <!-- 2. Configure SystemJS --> <script> System.config({ packages: { app: { format: 'register', defaultExtension: 'js' } } }); System.import('app/boot') .then(null, console.error.bind(console)); </script> </head> <!-- 3. Display the application --> <body> <query-app>Loading... Query Builder</query-app> </body> </html>