Jun 25 2013
If you don’t want to use Turbolinks with your Rails 4 application, it’s easy! Just do this:
- Remove the
gem 'turbolinks'
line from your Gemfile. - Remove the
//= require turbolinks
from yourapp/assets/javascripts/application.js
. - Remove the two
"data-turbolinks-track" => true
hash key/value pairs from yourapp/views/layouts/application.html.erb
.
Done!