Created
September 28, 2011 17:25
-
-
Save zznq/1248564 to your computer and use it in GitHub Desktop.
Ugly Nested Conditions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!$desc.is(':visible')) { | |
if(quick) | |
$desc.show(); | |
else | |
$desc.slideDown(); | |
} else { | |
if(quick) | |
$desc.hide(); | |
else | |
$desc.slideUp(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment