Removed console.log() calls.

This commit is contained in:
Kerrick Long
2011-07-12 17:45:55 -05:00
parent 13e956d1a7
commit 0ac6b6bcb9
-3
View File
@@ -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'));