Module: HTMLTagsHelpers

Defined in:
lib/more_html_tags/html_tags_helpers.rb

Instance Method Summary collapse

Instance Method Details

#tel_tag(telephone, html_options = nil, &block) ⇒ Object



2
3
4
5
6
7
8
# File 'lib/more_html_tags/html_tags_helpers.rb', line 2

def tel_tag(telephone, html_options = nil, &block)
  if block_given?
    link_to "tel:#{telephone}", html_options, &block
  else
    link_to telephone, "tel:#{telephone}", html_options
  end
end