diff --git a/js/directive/avatar.js b/js/directive/avatar.js index 1236569e3..85a253a26 100644 --- a/js/directive/avatar.js +++ b/js/directive/avatar.js @@ -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); } }); - } }; }); \ No newline at end of file diff --git a/js/public/app.js b/js/public/app.js index 83ca51aec..09e77b084 100644 --- a/js/public/app.js +++ b/js/public/app.js @@ -684,12 +684,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); } }); - } }; });