mirror of https://github.com/morpheus65535/bazarr
Fix for movies history paging
This commit is contained in:
parent
87165e91f2
commit
efcf5161ad
|
@ -205,15 +205,15 @@
|
|||
});
|
||||
|
||||
$('.fast.backward').on('click', function(){
|
||||
loadURLseries(1);
|
||||
loadURLmovies(1);
|
||||
});
|
||||
$('.backward:not(.fast)').on('click', function(){
|
||||
loadURLseries({{int(page)-1}});
|
||||
loadURLmovies({{int(page)-1}});
|
||||
});
|
||||
$('.forward:not(.fast)').on('click', function(){
|
||||
loadURLseries({{int(page)+1}});
|
||||
loadURLmovies({{int(page)+1}});
|
||||
});
|
||||
$('.fast.forward').on('click', function(){
|
||||
loadURLseries({{int(max_page)}});
|
||||
loadURLmovies({{int(max_page)}});
|
||||
});
|
||||
</script>
|
Loading…
Reference in New Issue