瀏覽代碼

init.js: fix lint errors

Manfred Kroehnert 11 年之前
父節點
當前提交
9ab8662a55
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      js/init.js

+ 3 - 2
js/init.js

@@ -1,9 +1,10 @@
 smalltalk.init(smalltalk.Object); //metaclasses are in through Class
 smalltalk.classes()._do_(function(each) {
-	each._initialize()});
+	each._initialize();
+});
 
 /* Similar to jQuery(document).ready() */
 
 if(this.smalltalkReady) {
-    this.smalltalkReady();
+	this.smalltalkReady();
 }