From 0ac6b6bcb91b6267eff5541393b294dc83263879 Mon Sep 17 00:00:00 2001 From: Kerrick Long Date: Tue, 12 Jul 2011 17:45:55 -0500 Subject: [PATCH] Removed console.log() calls. --- js/common.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/common.js b/js/common.js index a96a133..2742b98 100644 --- a/js/common.js +++ b/js/common.js @@ -323,11 +323,8 @@ RedditAPI.prototype.voteDownPost = function (e) { fullName = listItem.id; voteWas = listItem.getAttribute('data-dir'); url = listItem.parentNode.getAttribute('data-url'); - console.log(fullName); - console.log(url); reqUrl = 'http://' + this.domain + '/api/vote'; oldCache = cache.get(url); - console.log(oldCache.posts[fullName]); formData = new FormData(); formData.append('id', fullName); formData.append('uh', settings.get('modhash'));