Sha256: 5bff3070326192893f8e66ac3a425a366a310361338ddff5adefee0b29913417
Contents?: true
Size: 525 Bytes
Versions: 12
Compression:
Stored size: 525 Bytes
Contents
module FontAwesome module Sass module Rails module ViewHelpers def icon(icon, text = nil, html_options = {}) text, html_options = nil, text if text.is_a?(Hash) content_class = "fa fa-#{icon}" content_class << " #{html_options[:class]}" if html_options.key?(:class) html_options[:class] = content_class html = content_tag(:i, nil, html_options) html << ' ' << text.to_s unless text.blank? html end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems