Skip to content

Commit

Permalink
fix of twistday reminder doesnt show list if there is less than 2 twi…
Browse files Browse the repository at this point in the history
…sters in it
  • Loading branch information
Simon Grim committed May 6, 2015
1 parent f626761 commit 9fb7676
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/interface_home.js
Expand Up @@ -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();
Expand Down

0 comments on commit 9fb7676

Please sign in to comment.