Module: BadgeHelper
- Defined in:
- app/helpers/badge_helper.rb
Instance Method Summary collapse
-
#badge(count) ⇒ Object
Examples.
Instance Method Details
#badge(count) ⇒ Object
Examples
badge(2)
=> <span class="badge">2</span>
badge(nil)
=> nil
9 10 11 12 |
# File 'app/helpers/badge_helper.rb', line 9 def badge(count) return unless count content_tag(:span, count, class: "badge") end |