index.html 553 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Amber Smalltalk IDE starter menu</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  6. <meta name="author" content="Herbert Vojčík"/>
  7. <script type='text/javascript' src='bower_components/requirejs/require.js'></script>
  8. <script type='text/javascript' src='config.js'></script>
  9. </head>
  10. <body>
  11. <script type='text/javascript'>
  12. require.config({paths:{jquery:"bower_components/jquery/dist/jquery"}});
  13. require(['amber-ide-starter-dialog']);
  14. </script>
  15. </body>
  16. </html>