mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-09 15:35:47 +01:00
closes #1142
This commit is contained in:
@@ -141,16 +141,16 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
|
||||
}
|
||||
loadingEl.remove();
|
||||
|
||||
categoriesEl.on('click', function(e) {
|
||||
var el = $(e.target);
|
||||
categoriesEl.on('click', 'li[data-cid]', function(e) {
|
||||
var el = $(this);
|
||||
if (el.is('li')) {
|
||||
confirmCat.html(e.target.innerHTML);
|
||||
confirmCat.html(el.html());
|
||||
confirmDiv.css({display: 'block'});
|
||||
targetCid = el.attr('data-cid');
|
||||
targetCatLabel = e.html();
|
||||
targetCatLabel = el.html();
|
||||
commitEl.prop('disabled', false);
|
||||
}
|
||||
}, false);
|
||||
});
|
||||
|
||||
commitEl.on('click', function() {
|
||||
if (!commitEl.prop('disabled') && targetCid) {
|
||||
|
||||
Reference in New Issue
Block a user