mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-01-30 19:52:17 +01:00
Fixes #436
This commit is contained in:
parent
550a79c75c
commit
6bb5ab8a9d
@ -802,6 +802,8 @@ tbody tr.contact.active, tbody tr.contact:hover {
|
||||
float: left;
|
||||
width: 300px;
|
||||
height: 30px;
|
||||
margin: 3px;
|
||||
margin-left: 0px;
|
||||
overflow: hidden; text-overflow: ellipsis; text-align: bottom; white-space: nowrap;
|
||||
}
|
||||
#contact span.adr:hover { /*overflow: inherit;*/ /*white-space: pre-wrap;*/ }
|
||||
|
@ -1354,11 +1354,21 @@ OC.Contacts = OC.Contacts || {};
|
||||
var $list = self.$fullelem.find('ul.' + name);
|
||||
$list.removeClass('hidden');
|
||||
var $property = self.renderStandardProperty(name);
|
||||
$property.find('select[name="parameters[TYPE][]"]')
|
||||
.combobox({
|
||||
singleclick: true,
|
||||
classes: ['propertytype', 'float', 'label']
|
||||
});
|
||||
$list.append($property);
|
||||
});
|
||||
var $list = self.$fullelem.find('ul.adr');
|
||||
$list.removeClass('hidden');
|
||||
var $property = self.renderAddressProperty(name);
|
||||
$property.find('select[name="parameters[TYPE][]"]')
|
||||
.combobox({
|
||||
singleclick: true,
|
||||
classes: ['propertytype', 'float', 'label']
|
||||
});
|
||||
$list.append($property);
|
||||
|
||||
// Hide some of the values
|
||||
|
Loading…
x
Reference in New Issue
Block a user