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:
commit
c7e721effc
@ -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'
|
||||||
|
Loading…
Reference in New Issue
Block a user