when user changes displayName, also update it on expand button
This commit is contained in:
parent
906f8fa6f6
commit
2f3c5d8afc
|
@ -42,6 +42,10 @@ $(document).ready(function(){
|
|||
$.post( 'ajax/changedisplayname.php', post, function(data){
|
||||
if( data.status == "success" ){
|
||||
$('#displaynamechanged').show();
|
||||
// update displayName on the top right expand button
|
||||
str_parts = $('#expand').html().split('\t');
|
||||
str_parts[5] = $('#displayName').val();
|
||||
$('#expand').html(str_parts.join('\t'));
|
||||
}
|
||||
else{
|
||||
$('#newdisplayname').val(data.data.displayName)
|
||||
|
|
Loading…
Reference in New Issue