index.html 828 B

1234567891011121314151617181920212223242526272829303132
  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/requirejs/require.min.js'></script>
  8. <script src='../support/amber.js'></script>
  9. </head>
  10. <body>
  11. <script type='text/javascript'>
  12. require.config({
  13. paths: {
  14. 'amber_cli': 'js',
  15. 'amber_cli/_source': 'st'
  16. }
  17. });
  18. require(
  19. ["amber/devel",
  20. "amber_cli/AmberCli" ],
  21. function (smalltalk) {
  22. smalltalk.defaultAmdNamespace = 'amber_cli';
  23. smalltalk.initialize();
  24. smalltalk.Browser._openOn_(smalltalk.AmberCli);
  25. }
  26. );
  27. </script>
  28. </body>
  29. </html>