|
|
|
@ -31,47 +31,42 @@
|
|
|
|
|
}( window, function factory( LayoutMode, Masonry ) { |
|
|
|
|
'use strict'; |
|
|
|
|
|
|
|
|
|
// -------------------------- helpers -------------------------- //
|
|
|
|
|
|
|
|
|
|
// extend objects
|
|
|
|
|
function extend( a, b ) { |
|
|
|
|
for ( var prop in b ) { |
|
|
|
|
a[ prop ] = b[ prop ]; |
|
|
|
|
} |
|
|
|
|
return a; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// -------------------------- masonryDefinition -------------------------- //
|
|
|
|
|
|
|
|
|
|
// create an Outlayer layout class
|
|
|
|
|
var MasonryMode = LayoutMode.create('masonry'); |
|
|
|
|
|
|
|
|
|
// save on to these methods
|
|
|
|
|
var _getElementOffset = MasonryMode.prototype._getElementOffset; |
|
|
|
|
var layout = MasonryMode.prototype.layout; |
|
|
|
|
var _getMeasurement = MasonryMode.prototype._getMeasurement; |
|
|
|
|
var proto = MasonryMode.prototype; |
|
|
|
|
|
|
|
|
|
// sub-class Masonry
|
|
|
|
|
extend( MasonryMode.prototype, Masonry.prototype ); |
|
|
|
|
var keepModeMethods = { |
|
|
|
|
_getElementOffset: true, |
|
|
|
|
layout: true, |
|
|
|
|
_getMeasurement: true |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// set back, as it was overwritten by Masonry
|
|
|
|
|
MasonryMode.prototype._getElementOffset = _getElementOffset; |
|
|
|
|
MasonryMode.prototype.layout = layout; |
|
|
|
|
MasonryMode.prototype._getMeasurement = _getMeasurement; |
|
|
|
|
// inherit Masonry prototype
|
|
|
|
|
for ( var method in Masonry.prototype ) { |
|
|
|
|
// do not inherit mode methods
|
|
|
|
|
if ( !keepModeMethods[ method ] ) { |
|
|
|
|
proto[ method ] = Masonry.prototype[ method ]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var measureColumns = MasonryMode.prototype.measureColumns; |
|
|
|
|
MasonryMode.prototype.measureColumns = function() { |
|
|
|
|
var measureColumns = proto.measureColumns; |
|
|
|
|
proto.measureColumns = function() { |
|
|
|
|
// set items, used if measuring first item
|
|
|
|
|
this.items = this.isotope.filteredItems; |
|
|
|
|
measureColumns.call( this ); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// HACK copy over isOriginLeft/Top options
|
|
|
|
|
var _manageStamp = MasonryMode.prototype._manageStamp; |
|
|
|
|
MasonryMode.prototype._manageStamp = function() { |
|
|
|
|
this.options.isOriginLeft = this.isotope.options.isOriginLeft; |
|
|
|
|
this.options.isOriginTop = this.isotope.options.isOriginTop; |
|
|
|
|
_manageStamp.apply( this, arguments ); |
|
|
|
|
// point to mode options for fitWidth
|
|
|
|
|
var _getOption = proto._getOption; |
|
|
|
|
proto._getOption = function( option ) { |
|
|
|
|
if ( option == 'fitWidth' ) { |
|
|
|
|
return this.options.isFitWidth !== undefined ? |
|
|
|
|
this.options.isFitWidth : this.options.fitWidth; |
|
|
|
|
} |
|
|
|
|
return _getOption.apply( this.isotope, arguments ); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
return MasonryMode; |
|
|
|
|