index.html 842 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Prof Stef</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  6. <meta name="author" content=""/>
  7. <script type='text/javascript' src='the.js'></script>
  8. </head>
  9. <body>
  10. <script type='text/javascript'>
  11. var global = typeof global === "undefined" ? window : global || window;
  12. new Promise(function (resolve, reject) {
  13. require(['app'], resolve, reject);
  14. }).then(function (amber) {
  15. return amber.initialize({
  16. //used for all new packages in IDE
  17. 'transport.defaultAmdNamespace': "profstef"
  18. }).then(function () {
  19. require(["amber-ide-starter-dialog"], function (dlg) {
  20. dlg.start();
  21. });
  22. amber.globals.ProfStef._start();
  23. });
  24. });
  25. </script>
  26. </body>
  27. </html>