...
|
...
|
@@ -76,8 +76,9 @@ if ($('#list-nav').length > 0) { |
|
|
if ($('.back-ground-white').length > 10) {
|
|
|
$('.more-activity').show();
|
|
|
$('.back-ground-white').each(function(index, e) {
|
|
|
console.log(index);
|
|
|
if(index > 9) {
|
|
|
e.hide();
|
|
|
$(e).hide();
|
|
|
}
|
|
|
});
|
|
|
}
|
...
|
...
|
@@ -86,7 +87,7 @@ $('.more-activity').click(function() { |
|
|
$('.more-activity').hide();
|
|
|
$('.back-ground-white').each(function(index, e) {
|
|
|
if(index > 9) {
|
|
|
e.show();
|
|
|
$(e)git .show();
|
|
|
}
|
|
|
});
|
|
|
}); |
...
|
...
|
|