Browse Source

Loaders migrated

Herbert Vojčík 10 years ago
parent
commit
38e86cc7c9
3 changed files with 9 additions and 9 deletions
  1. 3 3
      cli/index.html
  2. 3 3
      helios.html
  3. 3 3
      index.html

+ 3 - 3
cli/index.html

@@ -22,9 +22,9 @@
         ["amber/devel",
             "amber_cli/AmberCli" ],
         function (smalltalk) {
-            smalltalk.defaultAmdNamespace = 'amber_cli';
-            smalltalk.initialize();
-            smalltalk.Browser._openOn_(smalltalk.AmberCli);
+            smalltalk.vm.defaultAmdNamespace = 'amber_cli';
+            smalltalk.vm.initialize();
+            smalltalk.globals.Browser._openOn_(smalltalk.AmberCli);
         }
     );
     </script> 

+ 3 - 3
helios.html

@@ -20,9 +20,9 @@
                           return 'Do you want to close Amber? All uncommitted changes will be lost.';
                       };
 
-                      smalltalk.defaultAmdNamespace = "amber_core";
-                      smalltalk.initialize();
-					  smalltalk.HLManager._setup();
+                      smalltalk.vm.defaultAmdNamespace = "amber_core";
+                      smalltalk.vm.initialize();
+					  smalltalk.globals.HLManager._setup();
                   }
           );
       </script>

+ 3 - 3
index.html

@@ -14,10 +14,10 @@
     require(
         ["amber/devel"],
         function (smalltalk) {
-            smalltalk.defaultAmdNamespace = "amber_core";
-            smalltalk.initialize();
+            smalltalk.vm.defaultAmdNamespace = "amber_core";
+            smalltalk.vm.initialize();
 
-            smalltalk.Browser._open()
+            smalltalk.globals.Browser._open()
         }
     );
 </script>