Sfoglia il codice sorgente

boot, smalltalk, nil, _st have explicit IDs

Herbert Vojčík 10 anni fa
parent
commit
46db3833ef
4 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. 1 1
      js/boot.js
  2. 1 1
      js/lib/_st.js
  3. 1 1
      js/lib/nil.js
  4. 1 1
      js/lib/smalltalk.js

+ 1 - 1
js/boot.js

@@ -34,7 +34,7 @@
    ==================================================================== */
 
 
-define([ './browser-compatibility' ], function () {
+define("amber_vm/boot", [ './browser-compatibility' ], function () {
 
 /* Array extensions */
 

+ 1 - 1
js/lib/_st.js

@@ -1,3 +1,3 @@
-define(['./boot'], function (boot) {
+define("amber_vm/_st", ["./boot"], function (boot) {
     return boot._st;
 });

+ 1 - 1
js/lib/nil.js

@@ -1,3 +1,3 @@
-define(['./boot'], function (boot) {
+define("amber_vm/nil", ["./boot"], function (boot) {
     return boot.nil;
 });

+ 1 - 1
js/lib/smalltalk.js

@@ -1,3 +1,3 @@
-define(['./boot'], function (boot) {
+define("amber_vm/smalltalk", ["./boot"], function (boot) {
     return boot.smalltalk;
 });