index.html 634 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Amber Smalltalk</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  6. <meta name="author" content="Nicolas Petton"/>
  7. <script type='text/javascript' src='support/amber.js'></script>
  8. <script type='text/javascript' src='support/requirejs/require.min.js'></script>
  9. </head>
  10. <body>
  11. <script type='text/javascript'>
  12. require(
  13. ["amber/devel"],
  14. function (smalltalk) {
  15. smalltalk.initialize({'transport.defaultAmdNamespace': "amber_core"});
  16. smalltalk.globals.Browser._open();
  17. }
  18. );
  19. </script>
  20. </body>
  21. </html>