mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 18:36:04 +01:00
8 lines
No EOL
327 B
Text
8 lines
No EOL
327 B
Text
$('#timeline').append('<% @timeline.each do |answer|
|
|
%><%= j render 'shared/answerbox', a: answer
|
|
%><% end %>');
|
|
<% if @timeline.next_page %>
|
|
$('#pagination').html('<%= j will_paginate @timeline, renderer: BootstrapPagination::Rails, page_links: false %>');
|
|
<% else %>
|
|
$('#pagination, #load-more-btn').remove();
|
|
<% end %> |