fix bottom bar events

v1.18.x
barisusakli 9 years ago
parent adf413ddf3
commit e91b5f07b8

@ -10,7 +10,7 @@ define('forum/topic/threadTools', ['forum/topic/fork', 'forum/topic/move', 'comp
renderMenu(); renderMenu();
var topicContainer = $('[component="topic"]'); var topicContainer = $('.topic');
topicContainer.on('click', '[component="topic/delete"]', function() { topicContainer.on('click', '[component="topic/delete"]', function() {
topicCommand('delete', tid); topicCommand('delete', tid);
@ -97,7 +97,7 @@ define('forum/topic/threadTools', ['forum/topic/fork', 'forum/topic/move', 'comp
}; };
function renderMenu() { function renderMenu() {
$('[component="topic"]').on('show.bs.dropdown', '.thread-tools', function() { function render() {
var $this = $(this); var $this = $(this);
var dropdownMenu = $this.find('.dropdown-menu'); var dropdownMenu = $this.find('.dropdown-menu');
if (dropdownMenu.html()) { if (dropdownMenu.html()) {
@ -115,7 +115,10 @@ define('forum/topic/threadTools', ['forum/topic/fork', 'forum/topic/move', 'comp
}); });
}); });
}); });
}); }
$('[component="topic"]').on('show.bs.dropdown', '.thread-tools', render);
$('.bottom-post-bar').on('show.bs.dropdown', '.thread-tools', render);
} }
function topicCommand(command, tid) { function topicCommand(command, tid) {

Loading…
Cancel
Save