|
@@ -6,11 +6,11 @@
|
|
|
<script src="../bower_components/amber/support/requirejs/require.min.js"></script>
|
|
|
<script type="text/javascript">
|
|
|
require.config({ paths: {
|
|
|
- 'com_example_hello': 'js', //mapping compiled .js files
|
|
|
- 'com_example_hello/_source': 'st' //mapping smalltalk source files
|
|
|
+ 'com_examples_hello': 'js', //mapping compiled .js files
|
|
|
+ 'com_examples_hello/_source': 'st' //mapping smalltalk source files
|
|
|
}});
|
|
|
- require(['amber/devel','com_example_hello/HelloApp'], function (smalltalk) {
|
|
|
- smalltalk.defaultAmdNamespace = "com_example_hello"; //used for all new packages in IDE
|
|
|
+ require(['amber/devel','com_examples_hello/HelloApp'], function (smalltalk) {
|
|
|
+ smalltalk.defaultAmdNamespace = "com_examples_hello"; //used for all new packages in IDE
|
|
|
smalltalk.initialize();
|
|
|
smalltalk.Hello._new()._begin();
|
|
|
});
|