2
0
Преглед на файлове

boot, smalltalk, nil, _st have explicit IDs

Herbert Vojčík преди 11 години
родител
ревизия
46db3833ef
променени са 4 файла, в които са добавени 4 реда и са изтрити 4 реда
  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;
 });