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

Merge pull request #446 from owncloud/icon-class-remove

remove unneeded icon class
This commit is contained in:
Thomas Tanghus 2014-03-14 15:10:27 +01:00
commit 6de5415f22

View File

@ -689,7 +689,7 @@ OC.Contacts = OC.Contacts || {};
$elem.data('obj', self);
$elem.data('rawname', t('contacts', 'Favorites'));
if(!$elem.find('.starred').length) {
$elem.data('contacts', contacts).find('.numcontacts').before('<span class="icon icon-starred starred action" />');
$elem.data('contacts', contacts).find('.numcontacts').before('<span class="icon-starred starred action" />');
}
$elem.droppable({
drop: self.contactDropped,