mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/10291] Fixed an AJAX bug on quick reply form submit.
It wasn't fading out. PHPBB3-10291
This commit is contained in:
parent
d8e21952fa
commit
10055d58cd
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ phpbb.add_ajax_callback('post_approve', function(res) {
|
||||||
|
|
||||||
// This callback handles the removal of the quick reply form.
|
// This callback handles the removal of the quick reply form.
|
||||||
phpbb.add_ajax_callback('qr-submit', function() {
|
phpbb.add_ajax_callback('qr-submit', function() {
|
||||||
$(this).parents('form').fadeOut(function() {
|
$(this).fadeOut(function() {
|
||||||
$(this).remove();
|
$(this).remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue