mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-06 04:21:17 +01:00
fix topic move notification
This commit is contained in:
@@ -18,7 +18,7 @@ define('forum/topic/move', function() {
|
||||
Move.moveAll = tids ? false : true;
|
||||
|
||||
modal.on('shown.bs.modal', onMoveModalShown);
|
||||
$('#move-confirm').hide();
|
||||
$('#move-confirm').addClass('hide');
|
||||
|
||||
if (Move.moveAll || (tids && tids.length > 1)) {
|
||||
modal.find('.modal-header h3').translateText('[[topic:move_topics]]');
|
||||
@@ -52,7 +52,7 @@ define('forum/topic/move', function() {
|
||||
|
||||
function selectCategory(category) {
|
||||
modal.find('#confirm-category-name').html(category.html());
|
||||
$('#move-confirm').show();
|
||||
$('#move-confirm').removeClass('hide');
|
||||
|
||||
targetCid = category.attr('data-cid');
|
||||
targetCategoryLabel = category.html();
|
||||
|
||||
Reference in New Issue
Block a user