Module: Tybo::FlashHelper
- Defined in:
- app/helpers/tybo/flash_helper.rb
Instance Method Summary collapse
Instance Method Details
#classes_for_flash(key) ⇒ Object
4 5 6 7 8 9 10 |
# File 'app/helpers/tybo/flash_helper.rb', line 4 def classes_for_flash(key) if %w[error alert].include?(key) 'bg-red-alert text-white' else 'bg-tybo text-white' end end |