ソースを参照

init.js: fix lint errors

Manfred Kroehnert 12 年 前
コミット
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();
 }