Browse Source

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

master
Simon Grim 10 years ago
parent
commit
9fb767619e
  1. 4
      js/interface_home.js

4
js/interface_home.js

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

Loading…
Cancel
Save