index.html 788 B

12345678910111213141516171819202122232425262728293031
  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': 'src'
  15. }
  16. });
  17. require(
  18. ["amber/devel",
  19. "amber_cli/AmberCli" ],
  20. function (smalltalk) {
  21. smalltalk.initialize({'transport.defaultAmdNamespace': 'amber_cli'});
  22. smalltalk.globals.Browser._openOn_(smalltalk.AmberCli);
  23. }
  24. );
  25. </script>
  26. </body>
  27. </html>