소스 검색

Add semi-colons

JC Brand 12 년 전
부모
커밋
93a80e0db6
1개의 변경된 파일3개의 추가작업 그리고 5개의 파일을 삭제
  1. 3 5
      converse.js

+ 3 - 5
converse.js

@@ -2088,7 +2088,7 @@
         } else {
         } else {
             controlbox.trigger('show');
             controlbox.trigger('show');
         }
         }
-    }
+    };
 
 
     converse.toggleControlBox = function () {
     converse.toggleControlBox = function () {
         if ($("div#controlbox").is(':visible')) {
         if ($("div#controlbox").is(':visible')) {
@@ -2109,7 +2109,7 @@
         if (klass) {
         if (klass) {
             $('.conn-feedback').addClass(klass);
             $('.conn-feedback').addClass(klass);
         }
         }
-    }
+    };
 
 
     converse.onConnected = function (connection) {
     converse.onConnected = function (connection) {
         this.connection = connection;
         this.connection = connection;
@@ -2163,8 +2163,7 @@
                 converse.clearMsgCounter();
                 converse.clearMsgCounter();
             }
             }
             this.windowState = e.type;
             this.windowState = e.type;
-        },this))
-
+        },this));
         this.giveFeedback('Online Contacts');
         this.giveFeedback('Online Contacts');
     };
     };
 
 
@@ -2179,6 +2178,5 @@
             }, this)
             }, this)
         );
         );
     };
     };
-
     return converse;
     return converse;
 }));
 }));