Skip to:
Content

BuddyPress.org

Changeset 5363


Ignore:
Timestamp:
11/24/2011 04:10:41 AM (13 years ago)
Author:
boonebgorges
Message:

Swaps the title attribute on the Favorite/Remove Favorite button when clicked. Fixes #3618

Location:
branches/1.5/bp-themes/bp-default
Files:
2 edited

Legend:

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

    r4961 r5363  
    186186                target.fadeOut( 100, function() {
    187187                    jq(this).html(response);
     188                    jq(this).attr('title', 'fav' == type ? BP_DTheme.remove_fav : BP_DTheme.mark_as_fav);
    188189                    jq(this).fadeIn(100);
    189190                });
  • branches/1.5/bp-themes/bp-default/functions.php

    r5241 r5363  
    154154        'comments'          => __( 'comments', 'buddypress' ),
    155155        'close'             => __( 'Close', 'buddypress' ),
    156         'view'              => __( 'View', 'buddypress' )
     156        'view'              => __( 'View', 'buddypress' ),
     157        'mark_as_fav'       => __( 'Favorite', 'buddypress' ),
     158        'remove_fav'        => __( 'Remove Favorite', 'buddypress' )
    157159    );
    158160
Note: See TracChangeset for help on using the changeset viewer.