Created
November 18, 2013 22:55
-
-
Save chriswburke/7536864 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Modified Isotope methods for gutters in masonry | |
$.Isotope.prototype._getMasonryGutterColumns = function() { | |
var gutter = this.options.masonry && this.options.masonry.gutterWidth || 0; | |
containerWidth = this.element.width(); | |
this.masonry.columnWidth = this.options.masonry && this.options.masonry.columnWidth || | |
// Or use the size of the first item | |
this.$filteredAtoms.outerWidth(true) || | |
// If there's no items, use size of container | |
containerWidth; | |
this.masonry.columnWidth += gutter; | |
this.masonry.cols = Math.floor((containerWidth + gutter) / this.masonry.columnWidth); | |
this.masonry.cols = Math.max(this.masonry.cols, 1); | |
}; | |
$.Isotope.prototype._masonryReset = function() { | |
// Layout-specific props | |
this.masonry = {}; | |
// FIXME shouldn't have to call this again | |
this._getMasonryGutterColumns(); | |
var i = this.masonry.cols; | |
this.masonry.colYs = []; | |
while (i--) { | |
this.masonry.colYs.push(0); | |
} | |
}; | |
$.Isotope.prototype._masonryResizeChanged = function() { | |
var prevSegments = this.masonry.cols; | |
// Update cols/rows | |
this._getMasonryGutterColumns(); | |
// Return if updated cols/rows is not equal to previous | |
return (this.masonry.cols !== prevSegments); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment