index.html 677 B

123456789101112131415161718192021222324
  1. <html>
  2. <head>
  3. <title>JTalk - Presentation</title>
  4. <script src="../vendor/amber/support/requirejs/require.min.js" type="text/javascript"></script>
  5. <script src="../vendor/amber/support/amber.js" type="text/javascript"></script>
  6. </head>
  7. <body>
  8. <script type="text/javascript">
  9. require.config({
  10. paths: {
  11. 'amber_examples_presentation': 'js',
  12. 'amber_examples_presentation\_source': 'st'
  13. }
  14. });
  15. require(['amber/devel','amber_examples_presentation/Presentation'],function(smalltalk) {
  16. smalltalk.defaultAMDNamespace = 'amber_examples_presentation';
  17. smalltalk.initialize();
  18. smalltalk.Browser._openOn_(smalltalk.FOSDEM2012Presentation);
  19. });
  20. </script>
  21. </body>
  22. </html>