Rails simple helper for Tawk live chat script. Work rails >= 4
Add this line to your application's Gemfile:
gem 'tawk_rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tawk_rails
Create file tawk.rb
in config/initializers/tawk.rb
and add
TawkRails.configure do |config|
config.id_site = 'replace-me-with-your-id_site'
end
Place render method where you want in view.
<%= tawk_init %>
Make sure to put tawk_init
into HTML body if you use Turbolinks.
You can pass js methods as string to the helper https://www.tawk.to/javascript-api/
<%= tawk_init "Tawk_API.onStatusChange = function(status){console.log(status);}; Tawk_API.visitor = {name : 'Name', email : '[email protected]'};" %>
- Fork it ( https://github.com/luizpicolo/tawk_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 new Pull Request