fix of twistday reminder doesnt show list if there is less than 2 twisters in it

This commit is contained in:
Simon Grim 2015-05-06 21:43:01 +05:00
parent f626761ade
commit 9fb767619e

View File

@ -273,9 +273,9 @@ function refreshTwistdayReminder() {
}
}
if (listCurrent.children().length > 1)
if (listCurrent.children().length)
listCurrent.parent().show();
if (listUpcoming.children().length > 1)
if (listUpcoming.children().length)
listUpcoming.parent().show();
$module.find('.refresh').show();
$module.find('.loading-roller').hide();