helios.html 1.0 KB

123456789101112131415161718192021222324252627282930
  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.defaultAmdNamespace = "amber_core";
  22. smalltalk.initialize();
  23. }
  24. );
  25. </script>
  26. </div>
  27. </body>
  28. </html>