Closed ursoforte closed 12 years ago
I think that you solved it perfectly. There’s not need to have it as a feature since it’s very specific case.
Thanks for this post, i missed this line on the documentation ... ^^' I think we can optimize your "trigger" :
$(document).ready(function(){
var total = $("#carousel").children().length;
var visible = 3;
if(total<visible){
visible = total;
}
$( "#carousel" ).rcarousel({
visible: visible,
step: 1,
margin:10,
width: 100,
height: 100
});
});
in reading
Need to create a "trigger" for the thumbnail images become visible. For when eses are inserted dynamically.
This is not a bug, it was quickly found to solve my problem. does it have a better way to solve? new feature maybe. I hope this is helpful if someone passes by it.