I have an issue with a script only working when refreshing the page and so I\'m trying to disable Turbolinks for only that page. The code below doesn\'t work. However, if I add
For turbolinks 5 if you use this method mentioned above:
<%= link_to "Policy", policy_path, :"data-no-turbolink" => true %>
You'll need to change it to:
<%= link_to "Policy", policy_path, :"data-turbolinks" => false %>