From fb3b4a0293c33bcd2e15df19e2564c610e4a48b6 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Wed, 26 Aug 2020 22:03:04 -0400 Subject: [PATCH] fix: debug logging :dog: --- public/src/client/post-queue.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/public/src/client/post-queue.js b/public/src/client/post-queue.js index ee163e8c7496..6bd7490ab1e4 100644 --- a/public/src/client/post-queue.js +++ b/public/src/client/post-queue.js @@ -7,14 +7,11 @@ define('forum/post-queue', ['categorySelector'], function (categorySelector) { PostQueue.init = function () { $('[data-toggle="tooltip"]').tooltip(); - console.log('here'); $('.posts-list').on('click', '[data-action]', function () { - console.log('derp'); var parent = $(this).parents('[data-id]'); var action = $(this).attr('data-action'); var id = parent.attr('data-id'); var method = action === 'accept' ? 'posts.accept' : 'posts.reject'; - console.log(parent, action, id, method); socket.emit(method, { id: id }, function (err) { if (err) {