mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
Fixed moving multiple posts down in post upload
This commit is contained in:
@ -527,7 +527,7 @@ App.Presenters.PostUploadPresenter = function(
|
||||
}
|
||||
|
||||
function movePostsDown(posts) {
|
||||
_.each(posts, function(post) {
|
||||
_.each(posts.reverse(), function(post) {
|
||||
var $row = post.$tableRow;
|
||||
$row.insertAfter($row.next('tr:not(.selected)'));
|
||||
});
|
||||
|
Reference in New Issue
Block a user