akv2 / MaxImage

The first jQuery plugin to use jQuery Cycle plugin as a fullscreen background slideshow.
http://www.aaronvanderzwan.com/maximage/2.0/
407 stars 219 forks source link

Unexpected additional elements #12 #13

Closed gon1387 closed 11 years ago

gon1387 commented 11 years ago

...rects the elements to be append at $self; located at setup method of Modern object.

12: Fixes this issue. There was a bug at line 106. Currently, it also loops on the inherited properties of $.Slides, and creates the superflous generated slides reported at issue #12

//EXACT CODE for(var i in $.Slides) { // Set our image var $img = $.Slides[i];

//FIX var i, len = $.Slides.length;

// Setup images
for(i=0; i < len; i++) {
    // Set our image
    var $img = $.Slides[i];