comparison index.html @ 22:9343e43a17d1

build with jspm now.
author casties
date Tue, 26 Jan 2016 15:43:30 +0100
parents 98b435bb6c0c
children 0795207f3b90
comparison
equal deleted inserted replaced
21:930fe7460f6b 22:9343e43a17d1
2 2
3 <head> 3 <head>
4 <title>ISMI Query Builder</title> 4 <title>ISMI Query Builder</title>
5 5
6 <!-- 1. Load libraries --> 6 <!-- 1. Load libraries -->
7 <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script> 7 <script src="jspm_packages/system.js"></script>
8 <script src="node_modules/systemjs/dist/system.src.js"></script> 8 <script src="config.js"></script>
9 <script src="node_modules/rxjs/bundles/Rx.js"></script>
10 <script src="node_modules/angular2/bundles/angular2.dev.js"></script>
11 <script src="node_modules/angular2/bundles/http.dev.js"></script>
12 9
13 <!-- 2. Configure SystemJS --> 10 <!-- 2. Configure SystemJS -->
14 <script> 11 <script>
15 System.config({ 12 System.import('app')
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)); 13 .then(null, console.error.bind(console));
25 </script> 14 </script>
26 15
27 </head> 16 </head>
28 17