Skip to content

Commit

Permalink
The next/previous buttons on Assets need turbolinks disabled for Able…
Browse files Browse the repository at this point in the history
…Player to load correctly.
  • Loading branch information
sethaj committed Jan 31, 2017
1 parent 1049ac3 commit 1a7bdf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/curation_concerns/file_sets/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
<ul class="pager">
<li class="previous">
<% if @presenter.previous_id? %>
<a href="<%= @presenter.previous_id %>" class="previous"><span class="glyphicon glyphicon-triangle-left" aria-hidden="true"></span> Previous</a>
<a href="<%= @presenter.previous_id %>" class="previous" data-turbolinks="false"><span class="glyphicon glyphicon-triangle-left" aria-hidden="true"></span> Previous</a>
<% end %>
</li>
<li class="next">
<% if @presenter.next_id? %>
<a href="<%= @presenter.next_id %>" class="next">Next <span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span></a>
<a href="<%= @presenter.next_id %>" class="next" data-turbolinks="false">Next <span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span></a>
<% end %>
</li>
</ul>
Expand Down

0 comments on commit 1a7bdf7

Please sign in to comment.