From 2aaeef9ac45a1066f16926e1a311ace51437a343 Mon Sep 17 00:00:00 2001 From: Julius Haertl Date: Sat, 29 Oct 2016 15:14:33 +0200 Subject: [PATCH] Remove console.log --- js/directive/avatar.js | 2 -- js/public/app.js | 2 -- 2 files changed, 4 deletions(-) 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); } }); - } }; });