Skip to:
Content

BuddyPress.org

Changeset 2498


Ignore:
Timestamp:
01/31/2010 02:34:02 PM (15 years ago)
Author:
apeatling
Message:

Fixes #1643

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/_inc/global.js

    r2488 r2498  
    269269
    270270        /* Comment / comment reply links */
    271         if ( target.attr('class') == 'acomment-reply' ) {
     271        if ( target.attr('class') == 'acomment-reply' || target.parent().attr('class') == 'acomment-reply' ) {
     272            if ( target.parent().attr('class') == 'acomment-reply' )
     273                target = target.parent();
     274
    272275            var id = target.attr('id');
    273276            ids = id.split('-');
Note: See TracChangeset for help on using the changeset viewer.