aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template
diff options
context:
space:
mode:
authorCallum Macrae <callum@lynxphp.com>2012-02-20 20:22:24 +0000
committerIgor Wiedler <igor@wiedler.ch>2012-03-31 02:10:16 +0200
commit10055d58cdbd1c6441166542467a955ebe286d25 (patch)
tree59f4d87c387c7abbb5960e90da5ce492112d89a7 /phpBB/styles/prosilver/template
parentd8e21952fa4660ba2ccc6587bef6275c8cddab37 (diff)
downloadforums-10055d58cdbd1c6441166542467a955ebe286d25.tar
forums-10055d58cdbd1c6441166542467a955ebe286d25.tar.gz
forums-10055d58cdbd1c6441166542467a955ebe286d25.tar.bz2
forums-10055d58cdbd1c6441166542467a955ebe286d25.tar.xz
forums-10055d58cdbd1c6441166542467a955ebe286d25.zip
[ticket/10291] Fixed an AJAX bug on quick reply form submit.
It wasn't fading out. PHPBB3-10291
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r--phpBB/styles/prosilver/template/ajax.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js
index f42c37fbce..02b1e95b46 100644
--- a/phpBB/styles/prosilver/template/ajax.js
+++ b/phpBB/styles/prosilver/template/ajax.js
@@ -26,7 +26,7 @@ phpbb.add_ajax_callback('post_approve', function(res) {
// This callback handles the removal of the quick reply form.
phpbb.add_ajax_callback('qr-submit', function() {
- $(this).parents('form').fadeOut(function() {
+ $(this).fadeOut(function() {
$(this).remove();
});
});