Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Find this code in /js/components.js file
- if (typeof this.onArrangeComplete === 'function') {
- this.isotopeInstance.on('arrangeComplete', () => {
- this.onArrangeComplete();
- this._equalizeColumnsHeight();
- });
- }
- // Fix: add a check before calling _equalizeColumnsHeight()
- if (typeof this.onArrangeComplete === 'function') {
- this.isotopeInstance.on('arrangeComplete', () => {
- this.onArrangeComplete();
- if (this.equalHeights) {
- this._equalizeColumnsHeight();
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement