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
}
}
- )
+ );
});
};
currentlyDisplayedDropdownMenu.hide();
}
$j(document).unbind('mouseup', hideCurrentDropdownMenu);
-}
+};
var clickOnDropdownMenuLink = function (event) {
var link = $j(event.target).children('a');
link.click();
}
}
-}
+};
function showDropdownMenu(menuId) {
showDropdownMenuOnElement($j('#' + menuId));