]> source.dussan.org Git - sonarqube.git/commitdiff
Fix some JS quality flaws
authorSimon Brandhof <simon.brandhof@gmail.com>
Mon, 15 Jul 2013 13:17:43 +0000 (15:17 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Mon, 15 Jul 2013 13:17:51 +0000 (15:17 +0200)
sonar-server/src/main/webapp/javascripts/application.js

index 41919bd52a1e9bedde67ac9fca9592b5adf4574b..b3085ad709fc7138192bc4d007743689f7b869a6 100644 (file)
@@ -132,8 +132,12 @@ var SelectBox = {
       a = a.text.toLowerCase();
       b = b.text.toLowerCase();
       try {
-        if (a > b) return 1;
-        if (a < b) return -1;
+        if (a > b) {
+          return 1;
+        }
+        if (a < b) {
+          return -1;
+        }
       }
       catch (e) {
         // silently fail on IE 'unknown' exception
@@ -238,7 +242,7 @@ Treemap.prototype.initNodes = function () {
         }
 
       }
-    )
+    );
   });
 };
 
@@ -431,7 +435,7 @@ var hideCurrentDropdownMenu = function () {
     currentlyDisplayedDropdownMenu.hide();
   }
   $j(document).unbind('mouseup', hideCurrentDropdownMenu);
-}
+};
 
 var clickOnDropdownMenuLink = function (event) {
   var link = $j(event.target).children('a');
@@ -445,7 +449,7 @@ var clickOnDropdownMenuLink = function (event) {
       link.click();
     }
   }
-}
+};
 
 function showDropdownMenu(menuId) {
   showDropdownMenuOnElement($j('#' + menuId));