Skip to content

Instantly share code, notes, and snippets.

@alvinlai
Forked from kuboon/application_helper.rb
Created August 31, 2013 20:46
Show Gist options
  • Save alvinlai/6400531 to your computer and use it in GitHub Desktop.
Save alvinlai/6400531 to your computer and use it in GitHub Desktop.
module ApplicationHelper
# ==== Examples
# glyph(:share_alt)
# # => <i class="icon-share-alt"></i>
# glyph(:lock, :white)
# # => <i class="icon-lock icon-white"></i>
def glyph(*names)
content_tag :i, nil, class: names.map{|name| "icon-#{name.to_s.gsub('_','-')}" }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment