A calendar management project, for events and activities related to communities fighting for freedoms.
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
589 B
15 lines
589 B
# Automatic ajax pagination |
|
$(document).on 'turbolinks:load', -> |
|
$('.pagination .next a').attr('data-remote', true).each -> |
|
# Go to the next page when page is scrolled |
|
$(document).scroll => |
|
if $(this).visible true, true |
|
# "Next" link is also hidden while pagination is done |
|
$(this).click().parents('.pagination').hide() |
|
|
|
$(document).on 'ajax:success', '.pagination .next a', (event, data) -> |
|
$(this).parents('tfoot').prev().append $('tbody tr', data) |
|
|
|
next = $('.pagination .next a', data).attr 'href' |
|
if next? |
|
$(this).attr('href', next).parents('.pagination').show()
|
|
|