Skip to:
Content

BuddyPress.org

Ticket #7443: 7443.js.patch

File 7443.js.patch, 641 bytes (added by r-a-y, 7 years ago)
  • src/bp-templates/bp-legacy/js/buddypress.js

     
    13971397                return false;
    13981398        } );
    13991399
     1400        // Fix hidden group visibility with themes using the .hidden CSS rule.
     1401        jq('#groups-list li.hidden').each(function() {
     1402                if ( jq(this).css('display') === 'none' ) {
     1403                        jq(this).css('cssText', 'display: list-item !important');
     1404                }
     1405        });
     1406
    14001407        /** Button disabling ************************************************/
    14011408
    14021409        jq('#buddypress').on( 'click', '.pending', function() {