Ticket #4696: trac4696_bp_accepted_button_should_be_text.patch
File trac4696_bp_accepted_button_should_be_text.patch, 777 bytes (added by , 12 years ago) |
---|
-
bp-themes/bp-default/_inc/global.js
873 874 button.fadeOut( 100, function() { 874 875 if ( jq(this).hasClass('accept') ) { 875 876 action_div.children('a.reject').hide(); 876 jq(this).html( BP_DTheme.accepted ).fadeIn(50); 877 jq(this).addClass('accepted'); 877 jq(this).html( BP_DTheme.accepted ).contents().unwrap(); 878 878 } else { 879 879 action_div.children('a.accept').hide(); 880 jq(this).html( BP_DTheme.rejected ).fadeIn(50); 881 jq(this).addClass('rejected'); 880 jq(this).html( BP_DTheme.rejected ).contents().unwrap(); 882 881 } 883 882 }); 884 883 }