How To Disable Turbolinks For Single Page In A Shared View?
I have a Javascript, which should work on $(document).ready but it won't, because I also have to use turbolinks. Is there a way to disable it for this script? Or at least, is ther
Solution 1:
current_page?(view_path) will check your if statement(not enought rep for comment this)
Solution 2:
1) turn off turbolinks - see http://blog.steveklabnik.com/posts/2013-06-25-removing-turbolinks-from-rails-4
2) use new page:load event that turbolinks fires - $(document).on('page:load', your_start_function);, see Rails Jquery doesn't work on other pages - guessing in your case it would be something like
Post a Comment for "How To Disable Turbolinks For Single Page In A Shared View?"