9 lines
328 B
Plaintext
9 lines
328 B
Plaintext
$('#questions').append('<% @questions.each do |q|
|
|
%><%= j render 'shared/question', q: q, type: nil
|
|
%><% end %>');
|
|
<% if @questions.next_page %>
|
|
$('#pagination').html('<%= j will_paginate @questions, renderer: BootstrapPagination::Rails, page_links: false %>');
|
|
<% else %>
|
|
$('#pagination, #load-more-btn').remove();
|
|
<% end %>
|