Fixed prev/next post selectors moving page
This commit is contained in:
parent
fce9c3483a
commit
09d8e5ae1c
1 changed files with 2 additions and 0 deletions
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue