helios.html 999 B

1234567891011121314151617181920212223242526272829
  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_vm/smalltalk", "amber_set/full-devel-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.initialize();
  22. }
  23. );
  24. </script>
  25. </div>
  26. </body>
  27. </html>