Skip to:
Content

BuddyPress.org

Ticket #2465: jeffsayre_2465_jquery.patch

File jeffsayre_2465_jquery.patch, 923 bytes (added by jeffsayre, 16 years ago)

JQuery alternating table row highlighting patch

  • Volumes/Sayre

     
    819819
    820820        /** Alternate Highlighting ******************************************/
    821821
    822         jq('table tr, div.message-box, ul#topic-post-list li').each( function(i) {
     822        jq('div.message-box, ul#topic-post-list li').each( function(i) {
    823823                if ( i % 2 != 1 )
    824824                        jq(this).addClass('alt');
    825825        });
     826       
     827        jq('table tr:nth-child(even)').addClass('alt');
    826828
    827829        /** Private Messaging ******************************************/
    828830