Update ODLUX
[ccsdk/features.git] / sdnr / wt / odlux / apps / lineOfSightApp / src / index.html
1 <!DOCTYPE html>
2 <html lang="en">
3
4 <head>
5   <meta charset="UTF-8">
6   <meta name="viewport" content="width=device-width, initial-scale=1.0">
7   <meta http-equiv="X-UA-Compatible" content="ie=edge">
8   <!-- <link rel="stylesheet" href="./vendor.css" > -->
9   <title>LineOfSightApp</title>
10 </head>
11
12 <body>
13   <div id="app"></div>
14   <script type="text/javascript" src="./require.js"></script>
15   <script type="text/javascript" src="./config.js"></script>
16   
17   <script>
18     // run the application
19     require(["app","connectApp","faultApp", "networkMapApp", "lineOfSightApp", "linkCalculationApp"], function (app, connectApp, faultApp, networkMapApp, lineOfSightApp, linkCalculationApp) {
20       connectApp.register();
21       faultApp.register();
22       //configurationApp.register();
23       //linkCalculationApp.register();
24       networkMapApp.register();
25       lineOfSightApp.register();
26       app("./app.tsx").runApplication();
27     });
28   </script>
29 </body>
30
31 </html>