1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-30 19:52:17 +01:00

Contacts: Fix getting value for compound properties (ADR, N)

This commit is contained in:
Thomas Tanghus 2013-03-29 17:15:20 +01:00
parent 6c1484de9c
commit 00f04fea49

View File

@ -590,7 +590,7 @@ OC.Contacts = OC.Contacts || {};
if($elements.length > 1) {
args['value'] = [];
$.each($elements, function(idx, e) {
args['value'].push($(e).text());
args['value'].push($(e).val());
});
} else {
args['value'] = $elements.val();