mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 15:06:03 +01:00
8 lines
354 B
Text
8 lines
354 B
Text
$('#timeline').append('<% @timeline.each do |answer|
|
|
%><%= j render 'answerbox', a: answer
|
|
%><% end %>');
|
|
<% if @more_data_available %>
|
|
$('#pagination').html('<%= j render 'shared/cursored_pagination_dummy', more_data_available: @more_data_available, last_id: @timeline_last_id %>');
|
|
<% else %>
|
|
$('#pagination, #load-more-btn').remove();
|
|
<% end %>
|