diff --git a/public/src/client/account/edit.js b/public/src/client/account/edit.js index 7969a1bcf1..05b2d14849 100644 --- a/public/src/client/account/edit.js +++ b/public/src/client/account/edit.js @@ -85,7 +85,6 @@ define('forum/account/edit', ['forum/account/header', 'uploader', 'translator'], .text(ajaxify.data['icon:text']); if (uploadedPicture) { - console.log("DERP"); modal.find('#user-uploaded-picture').attr('src', uploadedPicture); } diff --git a/public/src/client/topic/browsing.js b/public/src/client/topic/browsing.js index 2a4f8d791e..c3dc3b6a97 100644 --- a/public/src/client/topic/browsing.js +++ b/public/src/client/topic/browsing.js @@ -71,7 +71,6 @@ define('forum/topic/browsing', function() { if (!user.userslug) { return; } - console.log(user); var browsingList = $('[component="topic/browsing/list"]'); var userEl = createUserIcon(user.uid, user.picture, user.userslug, user.username, user['icon:bgColor'], user['icon:text']); var isSelf = parseInt(user.uid, 10) === parseInt(app.user.uid, 10); @@ -88,7 +87,6 @@ define('forum/topic/browsing', function() { function createUserIcon(uid, picture, userslug, username, iconBg, iconText) { if (!$('[component="topic/browsing/list"]').find('[data-uid="' + uid + '"]').length) { - console.log(iconBg, iconText); var imgOrIcon = picture ? '' : '
' + iconText + '
';