mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
Fixed prev/next post selectors moving page
This commit is contained in:
@ -531,10 +531,12 @@ App.Presenters.PostUploadPresenter = function(
|
|||||||
|
|
||||||
function selectPrevPostTableRow() {
|
function selectPrevPostTableRow() {
|
||||||
selectPostTableRow($el.find('tbody tr.selected:eq(0)').prev().data('post'));
|
selectPostTableRow($el.find('tbody tr.selected:eq(0)').prev().data('post'));
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectNextPostTableRow() {
|
function selectNextPostTableRow() {
|
||||||
selectPostTableRow($el.find('tbody tr.selected:eq(0)').next().data('post'));
|
selectPostTableRow($el.find('tbody tr.selected:eq(0)').next().data('post'));
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function showOrHidePostsTable() {
|
function showOrHidePostsTable() {
|
||||||
|
Reference in New Issue
Block a user