fix loading more entries in folder list if one page mode is on

This commit is contained in:
Uwe Steinmann 2020-01-22 15:54:29 +01:00
parent b994b5afcd
commit 8f56a8c8c0

View File

@ -160,7 +160,7 @@ $(window).scroll(function() {
loadMoreObjects($('#loadmore'), $('#loadmore').data('limit'));
}
});
$('#loadmore').click(function(e) {
$('body').on('click', '#loadmore', function(e) {
loadMoreObjects($(this), $(this).data('all'));
});