Show only entry I want. Hidden anywhere.

This commit is contained in:
Gustavo Cortez 2014-07-07 02:21:29 -03:00
commit 2ad4aee2d6
3 changed files with 13 additions and 6 deletions

View file

@ -129,7 +129,7 @@ angular.module('copayApp.directives')
var address = attrs.address;
var contact = scope.wallet.addressBook[address];
if (contact) {
if (contact && !contact.hidden) {
element.append(contact.label);
attrs['tooltip'] = attrs.address;
} else {