1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-04 15:12:23 -05:00

Removed console logging in ajaxEpSearch.js

This commit is contained in:
David Soms 2015-01-14 22:59:49 +01:00
parent 33e95870e0
commit f0399dc1f7

View File

@ -33,7 +33,6 @@ function check_manual_searches() {
function updateImages(data) {
$.each(data.episodes, function (name, ep) {
console.debug(ep.searchstatus);
// Get td element for current ep
var loadingImage = 'loading16.gif';
var queuedImage = 'queued.png';
@ -123,7 +122,6 @@ function disableLink(el) {
// Check if we have disabled the click
if ( $(this).attr('enableClick') == '0' ) {
console.debug("Already queued, not downloading!");
return false;
}
@ -180,4 +178,3 @@ function disableLink(el) {
});
}
})();