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

6
jquery.isotope.js

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

Loading…
Cancel
Save