mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-30 19:02:34 +00:00
Fix for movies history paging
This commit is contained in:
parent
87165e91f2
commit
efcf5161ad
1 changed files with 4 additions and 4 deletions
|
@ -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 a new issue