Skip to content

Instantly share code, notes, and snippets.

View robb-albright's full-sized avatar

Robb Albright robb-albright

View GitHub Profile
def hidden_div_if(condition, attributes = {}, &block)
if condition
attributes["style"] = "display: none"
end
content_tag("div", attributes, &block) end
end