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

Merge pull request #1306 from abeloin/patch-progress_bar

Fix progress bar vanishing when shows table empty.
This commit is contained in:
Alexandre Beloin 2015-02-15 18:28:08 -05:00
commit c7e721effc

View File

@ -131,10 +131,12 @@
sortAppend: [[1,0]] sortAppend: [[1,0]]
}); });
\$.tablesorter.filter.bindSearch( "#showListTableShows", \$('.search') ); if (\$("#showListTableShows").find("tbody").find("tr").size() > 0)
\$.tablesorter.filter.bindSearch( "#showListTableShows", \$('.search') );
#if $sickbeard.ANIME_SPLIT_HOME: #if $sickbeard.ANIME_SPLIT_HOME:
\$.tablesorter.filter.bindSearch( "#showListTableAnime", \$('.search') ); if (\$("#showListTableAnime").find("tbody").find("tr").size() > 0)
\$.tablesorter.filter.bindSearch( "#showListTableAnime", \$('.search') );
#end if #end if
#set $fuzzydate = 'airdate' #set $fuzzydate = 'airdate'