・ When you jump to a page, only that page keeps shaking. -No transition even if submit of form_for / with is pressed. -The slider images are arranged in an array.
rails:views/layout/application.html.erb
<div
<% if content_for?(:body_attributes) %>
<%= yield(:body_attributes) %>
<% end %>
>
<%= yield %>
</div>
Without closing the closing brace of the div
<% if content_for?(:body_attributes) %> <%= yield(:body_attributes) %> Put <% end%>
inside
<% content_for(:body_attributes) do %>
data-turbolinks="false"
<% end %>
You can disable it by adding , data: {"turbolinks "=> false}
.
<div data-turbolinks='false'>
<a href="/"></a>
</div>
How easy it is to do it! !! I still have to study! !!
Recommended Posts