Set the loading class on the property being changed, not on its container. Now on all the places relevant ;-)

This commit is contained in:
Thomas Tanghus 2012-07-08 16:15:52 +02:00
parent d730d3edd4
commit 747b7fbbfe
1 changed files with 3 additions and 3 deletions

View File

@ -669,7 +669,7 @@ Contacts={
}
else{
OC.dialogs.alert(jsondata.data.message, t('contacts', 'Error'));
Contacts.UI.loading(container, false);
Contacts.UI.loading(obj, false);
$(obj).removeAttr('disabled');
return false;
}
@ -682,13 +682,13 @@ Contacts={
container.data('checksum', jsondata.data.checksum);
// TODO: savePropertyInternal doesn't know about new fields
//Contacts.UI.Card.savePropertyInternal(name, fields, checksum, jsondata.data.checksum);
Contacts.UI.loading(container, false);
Contacts.UI.loading(obj, false);
$(obj).removeAttr('disabled');
return true;
}
else{
OC.dialogs.alert(jsondata.data.message, t('contacts', 'Error'));
Contacts.UI.loading(container, false);
Contacts.UI.loading(obj, false);
$(obj).removeAttr('disabled');
return false;
}