1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-30 19:52:17 +01:00
This commit is contained in:
jbtbnl 2014-04-01 20:12:46 +02:00
parent 550a79c75c
commit 6bb5ab8a9d
2 changed files with 12 additions and 0 deletions

View File

@ -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;*/ }

View File

@ -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