Fixed prev/next post selectors moving page

This commit is contained in:
Marcin Kurczewski 2015-03-19 22:57:37 +01:00
parent fce9c3483a
commit 09d8e5ae1c

View file

@ -531,10 +531,12 @@ App.Presenters.PostUploadPresenter = function(
function selectPrevPostTableRow() {
selectPostTableRow($el.find('tbody tr.selected:eq(0)').prev().data('post'));
return false;
}
function selectNextPostTableRow() {
selectPostTableRow($el.find('tbody tr.selected:eq(0)').next().data('post'));
return false;
}
function showOrHidePostsTable() {