12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Amber Smalltalk</title>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <meta name="author" content="Nicolas Petton" />
- <script type='text/javascript' src='../support/requirejs/require.min.js'></script>
- <script src='../support/amber.js'></script>
- </head>
- <body>
- <script type='text/javascript'>
- require.config({
- paths: {
- 'amber_cli': 'src'
- }
- });
- require(
- ["amber/devel",
- "amber_cli/AmberCli" ],
- function (smalltalk) {
- smalltalk.initialize({'transport.defaultAmdNamespace': 'amber_cli'});
- smalltalk.globals.Browser._openOn_(smalltalk.AmberCli);
- }
- );
- </script>
- </body>
- </html>
|