Method: CustomTable::ApplicationHelper#amount_round_color
- Defined in:
- app/helpers/custom_table/application_helper.rb
#amount_round_color(c) ⇒ Object
Colored rounded
431 432 433 |
# File 'app/helpers/custom_table/application_helper.rb', line 431 def amount_round_color(c) content_tag(:span, amount_round(c), class: ["amount", (c.to_f >= 0 ? "positive" : "negative")]) end |