Remove console.log

This commit is contained in:
Julius Haertl
2016-10-29 15:14:33 +02:00
parent ad5f854afd
commit 2aaeef9ac4
2 changed files with 0 additions and 4 deletions

View File

@@ -27,12 +27,10 @@ app.directive('avatar', function() {
scope: true,
link: function(scope, element, attr){
attr.$observe('displayname', function(value){
console.log(value);
if(value!==undefined) {
$(element).avatar(value, 32);
}
});
}
};
});