1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Merge pull request #1188 from dsoms/patch-1

Removed console logging in ajaxEpSearch.js
This commit is contained in:
echel0n 2015-01-17 19:22:33 -08:00
commit 6a06de87a8

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) {
});
}
})();