Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / framework / src / index.dev.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>O D L UX</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   <script >
17     //  window._odluxExtraLinks = [
18     //    ["imprint","https://some-url-to-imprint"],
19     //    ["privacy declaration", "https://some-url-to-privacy-declaration"]
20     //  ]
21   </script>
22   <script>
23     // run the application
24     require(["app" ,"connectApp","faultApp"/*,"inventoryApp","helpApp"*/], function (app,connectApp,faultApp,/*inventoryApp,helpApp*/) {
25       connectApp.register();
26       faultApp.register();
27       // inventoryApp.register();
28       // helpApp.register();
29       app("./app.tsx").configureApplication({ authentication:"basic",  enablePolicy:  false, transportpceUrl:"http://test.de"});
30       app("./app.tsx").runApplication();
31     });
32   </script>
33 </body>
34
35 </html>