mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10270] Disabling links in disappearing content
Disabling click events for blocks that are being removed via ajax PHPBB3-10270
This commit is contained in:
parent
10055d58cd
commit
cf92528390
1 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ phpbb.add_ajax_callback('post_delete', function() {
|
|||
if (el.attr('data-refresh') === undefined)
|
||||
{
|
||||
post_id = el[0].href.split('&p=')[1];
|
||||
el.parents('#p' + post_id).fadeOut(function() {
|
||||
el.parents('#p' + post_id).css('pointer-events', 'none').fadeOut(function() {
|
||||
$(this).remove();
|
||||
});
|
||||
}
|
||||
|
@ -19,14 +19,14 @@ phpbb.add_ajax_callback('post_delete', function() {
|
|||
// This callback removes the approve / disapprove div or link.
|
||||
phpbb.add_ajax_callback('post_approve', function(res) {
|
||||
var remove = (res.approved) ? $(this) : $(this).parents('.post');
|
||||
$(remove).fadeOut(function() {
|
||||
$(remove).css('pointer-events', 'none').fadeOut(function() {
|
||||
$(this).remove();
|
||||
});
|
||||
});
|
||||
|
||||
// This callback handles the removal of the quick reply form.
|
||||
phpbb.add_ajax_callback('qr-submit', function() {
|
||||
$(this).fadeOut(function() {
|
||||
$(this).css('pointer-events', 'none').fadeOut(function() {
|
||||
$(this).remove();
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue