From 78189e2247ca28c0edda5688005d4b3f1a3d439f Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 12 Apr 2012 23:08:48 +0200 Subject: [PATCH] Contacts: update category list when the categories change --- apps/contacts/js/contacts.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index 6f34a42a73..5f2bd6e9df 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -504,8 +504,9 @@ Contacts={ return false; }, categoriesChanged:function(newcategories) { // Categories added/deleted. - console.log('categoriesChanged for ' + Contacts.UI.Card.id + ' : ' + newcategories); - categories = newcategories; + categories = $.map(newcategories, function(v) {return v;}); + console.log('categoriesChanged for ' + Contacts.UI.Card.id + ' : ' + categories); + $('#categories').multiple_autocomplete('option', 'source', categories); var categorylist = $('#categories_value').find('input'); $.getJSON(OC.filePath('contacts', 'ajax', 'categories/categoriesfor.php'),{'id':Contacts.UI.Card.id},function(jsondata){ if(jsondata.status == 'success'){