Skip to:
Content

BuddyPress.org

Ticket #6514: buddypress.js.2.patch

File buddypress.js.2.patch, 815 bytes (added by CodeMonkeyBanana, 10 years ago)

Uses promise otherwise fires too early

  • buddypress.js

     
    18941894                                jq(target).fadeOut( 100, function() {
    18951895                                        jq(this).html(response);
    18961896                                        jq(this).fadeIn(100);
    1897                                 });
     1897                                }).promise().done(function () {
     1898                        jq(document).trigger("buddyFilter:replaced", [object, filter]);
     1899                    });
    18981900                        });
    18991901
    19001902                } else {
     
    19011903                        jq(target).fadeOut( 100, function() {
    19021904                                jq(this).html(response);
    19031905                                jq(this).fadeIn(100);
    1904                         });
     1906                        }).promise().done(function () {
     1907                        jq(document).trigger("buddyFilter:replaced", [object, filter]);
     1908                    });
    19051909                }
    19061910
    19071911                jq('.item-list-tabs li.selected').removeClass('loading');