commit
432cd4a5c2
|
@ -616,13 +616,16 @@ $(document).ready(function () {
|
|||
.keypress(function (event) {
|
||||
if (event.keyCode === 13) {
|
||||
if ($(this).val().length > 0) {
|
||||
$tr.find('.avatardiv').imageplaceholder(uid, displayName);
|
||||
var $div = $tr.find('div.avatardiv');
|
||||
if ($div.length) {
|
||||
$div.imageplaceholder(uid, displayName);
|
||||
}
|
||||
$.post(
|
||||
OC.filePath('settings', 'ajax', 'changedisplayname.php'),
|
||||
{username: uid, displayName: $(this).val()},
|
||||
function (result) {
|
||||
if (result && result.status==='success'){
|
||||
$tr.find('.avatardiv').avatar(result.data.username, 32);
|
||||
if (result && result.status==='success' && $div.length){
|
||||
$div.avatar(result.data.username, 32);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue