1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-29 11:24:11 +01:00

Contacts: Don't use show/hide on multiselect

This commit is contained in:
Thomas Tanghus 2013-03-28 04:59:55 +01:00
parent a7f4485d6e
commit ffc13d5cda

View File

@ -503,7 +503,7 @@ OC.Contacts = OC.Contacts || {};
self.id = String(response.data.metadata.id);
self.metadata = response.data.metadata;
self.data = response.data.data;
self.$groupSelect.multiselect('widget').show();
self.$groupSelect.multiselect('enable');
// Add contact to current group
if(self.groupprops && self.groupprops.currentgroup.id !== 'all'
&& self.groupprops.currentgroup.id !== 'fav') {
@ -767,7 +767,7 @@ OC.Contacts = OC.Contacts || {};
}
});
if(!self.id) {
self.$groupSelect.multiselect('widget').hide();
self.$groupSelect.multiselect('disable');
}
};
@ -795,7 +795,7 @@ OC.Contacts = OC.Contacts || {};
selectedText: t('contacts', '# groups')
});
if(self.id) {
self.$addressBookSelect.multiselect('widget').hide();
self.$addressBookSelect.multiselect('disable');
}
};