TelLinkRails
Creates a tel: link tag to the specified number
, which is also used as the name of the link unless name
is specified. Additional HTML attributes for the link can be passed in html_options
.
Installation
Add this line to your application's Gemfile:
gem 'tel_link_rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tel_link_rails
Usage
tel_link '+44 20 8123 4567'
# => <a href="tel:+44-20-8123-4567">+44 20 8123 4567</a>
tel_link '+44 20 8123 4567', 'Telephone'
# => <a href="tel:+44-20-8123-4567">Telephone</a>
Contributing
- Fork it ( https://github.com/initforthe/tel_link_rails/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request