You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, i found a problem working with thumb images that has diferent widths.
The width of UL in thumbs content is wrong. Is calculating this $('ul > li', thumbs).length * $('ul > li', thumbs).outerWidth() AND for me has to add the width of each image. in line: 988 and 994
Hello, i found a problem working with thumb images that has diferent widths.$('ul > li', thumbs).length * $ ('ul > li', thumbs).outerWidth() AND for me has to add the width of each image. in line: 988 and 994
The width of UL in thumbs content is wrong. Is calculating this
var ulTW = 0;
$('ul > li', thumbs).each(function(){
ulTW += $(this).outerWidth();
});
regards :)
The text was updated successfully, but these errors were encountered: