index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <script type="text/javascript">
  12. window.requireNode = window.require;
  13. window.require = undefined;
  14. </script>
  15. <div id="includes">
  16. <script type='text/javascript' src='../amber.js'></script>
  17. <script type='text/javascript' src='../requirejs/require.min.js'></script>
  18. <script type='text/javascript'>
  19. require(
  20. ["helios/all"],
  21. function (smalltalk) {
  22. window.onbeforeunload = function() {
  23. return 'Do you want to close Amber? All uncommitted changes will be lost.';
  24. };
  25. smalltalk.initialize({'transport.defaultAmdNamespace': "amber_core"});
  26. smalltalk.globals.HLManager._setup();
  27. }
  28. );
  29. </script>
  30. </div>
  31. </body>
  32. </html>