From 6a49ddda307d68f22b4d2a3b0c65c3b31205e221 Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Mon, 17 Jan 2011 20:40:45 -0500 Subject: [PATCH] src : verticalList -> straightDown --- jquery.isotope.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/jquery.isotope.js b/jquery.isotope.js index f38d87f..2594ca9 100644 --- a/jquery.isotope.js +++ b/jquery.isotope.js @@ -956,31 +956,31 @@ window.Modernizr = window.Modernizr || (function(window,doc,undefined){ }, - // ====================== verticalList ====================== + // ====================== straightDown ====================== - _verticalListReset : function() { - this.verticalList = { + _straightDownReset : function() { + this.straightDown = { y : 0 }; return this; }, - _verticalListLayout : function( $elems ) { + _straightDownLayout : function( $elems ) { var instance = this; $elems.each( function( i ){ var $this = $(this), - y = instance.verticalList.y + instance.posTop; + y = instance.straightDown.y + instance.posTop; instance._pushPosition( $this, instance.posLeft, y ); - instance.verticalList.y += $this.outerHeight(true) + instance.straightDown.y += $this.outerHeight(true) }); return this; }, - _verticalListGetContainerSize : function() { - return { height : this.verticalList.y + this.posTop }; + _straightDownGetContainerSize : function() { + return { height : this.straightDown.y + this.posTop }; }, - _verticalListResize : function() { + _straightDownResize : function() { this.reLayout(); return this; },