helios.html 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Helios IDE</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <meta name="author" content="Nicolas Petton" />
  7. <link type="image/x-icon" rel="shortcut icon" href="/favicon.ico"/>
  8. </head>
  9. <body id="helios">
  10. <div id="helper">Loading Helios...</div>
  11. <div id="includes">
  12. <script type='text/javascript' src='support/amber.js'></script>
  13. <script type='text/javascript' src='support/requirejs/require.min.js'></script>
  14. <script type='text/javascript'>
  15. require(
  16. ["amber/helios"],
  17. function (smalltalk) {
  18. window.onbeforeunload = function() {
  19. return 'Do you want to close Amber? All uncommitted changes will be lost.';
  20. };
  21. smalltalk.vm.defaultAmdNamespace = "amber_core";
  22. smalltalk.vm.initialize();
  23. smalltalk.globals.HLManager._setup();
  24. }
  25. );
  26. </script>
  27. </div>
  28. </body>
  29. </html>