Module: GlyphHelper

Defined in:
app/helpers/glyph_helper.rb

Instance Method Summary collapse

Instance Method Details

#glyph(*names, options) ⇒ Object

Examples

glyph(:share_alt) # => <span class=“icon-share-alt”></span> glyph(:lock, :white) # => <span class=“icon-lock icon-white”></span> glyph(:thumbs_up, :pull_left) # => <i class=“icon-thumbs-up pull-left”></i> glyph(:lock, :span) # => <span class=“icon-lock”></span>



11
12
13
14
15
16
17
18
# File 'app/helpers/glyph_helper.rb', line 11

def glyph(*names, options)
  names.map! { |name| name.to_s.gsub('_','-') }
  names.map! do |name|
    name =~ /pull-(?:left|right)/ ? name : "glyphicon glyphicon-#{name}"
  end
  options[:tag] = options[:tag] ||= :i
   options[:tag], nil, :class => names
end