Browse Source

Fixed bug where callback wouldn't be called after the 'remove' method.

pull/150/head
Vedran Vrbanc 13 years ago
parent
commit
2ccd7b2fbf
  1. 8
      jquery.isotope.js

8
jquery.isotope.js

@ -811,9 +811,9 @@
} else {
// remove it now
removeContent();
if ( callback ) {
callback.call( this.element );
}
}
if ( callback ) {
callback.call( this.element );
}
},
@ -1388,4 +1388,4 @@
return this;
};
})( window, jQuery );
})( window, jQuery );

Loading…
Cancel
Save