1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Conditional Class Selectors in Haml as a rails til.

This commit is contained in:
jbranchaud
2015-05-11 19:39:26 -05:00
parent 22b2e83544
commit eed68fdbaf
2 changed files with 22 additions and 0 deletions

View File

@@ -53,6 +53,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
- [Attribute Getter without the Recursion](rails/attribute-getter-without-the-recursion.md)
- [Attribute Was](rails/attribute-was.md)
- [Capybara Page Status Code](rails/capybara-page-status-code.md)
- [Conditional Class Selectors in Haml](rails/conditional-class-selectors-in-haml.md)
- [Creating Records of Has_One Associations](rails/creating-records-of-has-one-associations.md)
- [Show Pending Migrations](rails/show-pending-migrations.md)

View File

@@ -0,0 +1,21 @@
# Conditional Class Selectors in Haml
You can assign a class selector to a tag in HAML like so:
```ruby
%div.active
```
You can conditionally assign a class selector in a concise manner like so:
```ruby
%div{ class: ( "active" if @thing.active? ) }
```
You can do multiple conditional class selectors with array syntax:
```ruby
%div{ class: [ ("active" if @thing.active?), ("highlight" if @thing.important?) ] }
```
[source](http://stackoverflow.com/questions/3453560/append-class-if-condition-is-true-in-haml-with-rails)