[jQuery] li width bug in jCarousel
In jcarousel 0.2.3, in the reload() funtion, on line 269, there is
this code to compute the dimensions of the li's:
$('li', this.list).each(function(i) { ...
but won't that compute the dimensions of all li's in the document? It
should only be recomputing the dimensions of the child li's and so
should be something like:
var li = this.list.children('li');
$(li, this.list).each(function(i) { ...
Is that right or am I missing something?