123456789101112131415161718192021222324252627282930313233 |
- <html>
- <head>
- <title>{{name}}</title>
- <script src="/vendor/amber/support/amber.js"></script>
- <script type='text/javascript' src='/vendor/amber/support/requirejs/require.min.js'></script>
- </head>
- <body>
- <script type="text/javascript">
- require.config({
- config: {
- 'amber_vm/smalltalk': {
- defaultNamespace: 'gh_herby_trapped'
- }
- },
- paths: {
- 'gh_herby_trapped': '/lib/js',
- 'gh_herby_trapped/_source': '/lib/st'
- }
- });
- require(
- ["amber_vm/smalltalk", "amber_set/full-devel",
- "gh_herby_trapped/Trapped-Backend", "gh_herby_trapped/Trapped-Tests" ],
- function (smalltalk) {
- smalltalk.initialize();
- smalltalk.Browser._openOn_(smalltalk.IsolatorTest);
- }
- );
- </script>
- <div>
- </div>
- </body>
- </html>
|