mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-02-26 08:31:22 +01:00
fix: use config.undoTimeout instead of hardcoded value
if user is in the target topic and they only moved 1 post show that post after moving update target tid as user navigates different topics
This commit is contained in:
@@ -50,7 +50,7 @@ define('forum/topic/move-post', [
|
|||||||
title: '[[topic:thread_tools.move-posts]]',
|
title: '[[topic:thread_tools.move-posts]]',
|
||||||
message: '[[topic:topic_move_posts_success]]',
|
message: '[[topic:topic_move_posts_success]]',
|
||||||
type: 'success',
|
type: 'success',
|
||||||
timeout: 10000,
|
timeout: config.undoTimeout,
|
||||||
timeoutfn: function () {
|
timeoutfn: function () {
|
||||||
movePosts(data);
|
movePosts(data);
|
||||||
},
|
},
|
||||||
@@ -78,7 +78,7 @@ define('forum/topic/move-post', [
|
|||||||
) {
|
) {
|
||||||
targetTid = ajaxify.data.tid;
|
targetTid = ajaxify.data.tid;
|
||||||
}
|
}
|
||||||
if (targetTid && !tidInput.val()) {
|
if (targetTid) {
|
||||||
tidInput.val(targetTid);
|
tidInput.val(targetTid);
|
||||||
}
|
}
|
||||||
checkMoveButtonEnable();
|
checkMoveButtonEnable();
|
||||||
@@ -149,7 +149,10 @@ define('forum/topic/move-post', [
|
|||||||
$(this).remove();
|
$(this).remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
if (data.pids.length === 1 && ajaxify.data.template.topic &&
|
||||||
|
parseInt(data.tid, 10) === parseInt(ajaxify.data.tid, 10)) {
|
||||||
|
ajaxify.go(`/post/${data.pids[0]}`);
|
||||||
|
}
|
||||||
closeMoveModal();
|
closeMoveModal();
|
||||||
}).catch(alerts.error);
|
}).catch(alerts.error);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user