12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Axxord</title>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <meta name="author" content="Herbert Vojčík"/>
- <script type='text/javascript' src='the.js'></script>
- </head>
- <body>
- <script type='text/javascript'>
- require(['app'], function (amberPromise) {
- amberPromise.then(function (amber) {
- amber.initialize({
- //used for all new packages in IDE
- 'transport.defaultAmdNamespace': "axxord"
- }).then(function () {
- require(["amber-ide-starter-dialog"], function (dlg) {
- dlg.start();
- });
- });
- });
- });
- </script>
- </body>
- </html>
|