浏览代码

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;
 });