From 877028466175e4a4667dbef7b1013f4e90b56c75 Mon Sep 17 00:00:00 2001 From: Baris Soner Usakli Date: Sun, 26 Jan 2014 17:23:28 -0500 Subject: [PATCH] removed console.log --- src/socket.io/categories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socket.io/categories.js b/src/socket.io/categories.js index 4ccc949779..ddea33d2f3 100644 --- a/src/socket.io/categories.js +++ b/src/socket.io/categories.js @@ -20,7 +20,7 @@ SocketCategories.loadMore = function(socket, data, callback) { var start = parseInt(data.after, 10), end = start + topicsPerPage - 1; -console.log(start, end); + categories.getCategoryTopics(data.cid, start, end, socket.uid, callback); };