]> git.uio.no Git - u/erikhf/frm.git/blob - src/index.html
Fixed merge conflic in map.ts
[u/erikhf/frm.git] / src / index.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4     <meta charset="UTF-8">
5     <title>Sample App</title>
6
7     <script src="../node_modules/@reactivex/rxjs/dist/global/Rx.js"></script>
8
9     <script>
10         var xhReq = new XMLHttpRequest();
11         xhReq.open("GET", "../manifest.webapp", false);
12         xhReq.send(null);
13         var serverResponse = JSON.parse(xhReq.responseText);
14         var dhisAPI = serverResponse.activities.dhis.href;
15     </script>
16     <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDlgw6kZAQvD8ex_md-6wb_NcnVlZWkbE4"></script>
17     <script src="../node_modules/systemjs/dist/system.src.js"></script>
18     <script src="../node_modules/angular2/bundles/angular2.dev.js"></script>
19     <script src="../node_modules/angular2/bundles/http.dev.js"></script>
20     <!--<script src="../node_modules/angular2/bundles/router.dev.js"></script>-->
21     <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
22     <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
23     <link rel="stylesheet" type="text/css" href="../node_modules/bootstrap/dist/css/bootstrap.min.css">
24     <link rel="stylesheet" type="text/css" href="css/map.css">
25
26     <script>
27         System.config({
28             packages: {'components': {defaultExtension: 'js'}}
29         });
30         System.import('components/app');
31     </script>
32 </head>
33 <body>
34     <mou-app>loading...</mou-app>
35 </body>
36 </html>