Created
April 18, 2013 06:53
-
-
Save orioltf/5410711 to your computer and use it in GitHub Desktop.
#HAML: Conditional tag attribute depending on absence of value
This file contains hidden or 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
%li{:hidden => (nav.shown == true ? nil : '')} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When you return nil value for an attribute, HAML will ignore it and it will not appear in the output.