Skip to content

Instantly share code, notes, and snippets.

@robb-albright
Created October 20, 2011 21:41
Show Gist options
  • Save robb-albright/1302462 to your computer and use it in GitHub Desktop.
Save robb-albright/1302462 to your computer and use it in GitHub Desktop.
def hidden_div_if(condition, attributes = {}, &block)
if condition
attributes["style"] = "display: none"
end
content_tag("div", attributes, &block) end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment