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. 2
      jquery.isotope.js

2
jquery.isotope.js

@ -811,10 +811,10 @@
} else { } else {
// remove it now // remove it now
removeContent(); removeContent();
}
if ( callback ) { if ( callback ) {
callback.call( this.element ); callback.call( this.element );
} }
}
}, },

Loading…
Cancel
Save