1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-18 07:52:21 +01:00

also remove parentheses from favorites count

This commit is contained in:
Jan-Christoph Borchardt 2014-01-10 13:23:24 +01:00
parent 22b953a1fc
commit dea0c0ad6d

View File

@ -669,7 +669,7 @@ OC.Contacts = OC.Contacts || {};
$elem = $elem.length ? $elem : tmpl.octemplate({
id: 'fav',
type: 'fav',
num: '(' + contacts.length + ')',
num: contacts.length,
name: t('contacts', 'Favorites')
}).appendTo($groupList);
$elem.data('obj', self);