From e1863cfd38f05a7c484bd247824c13a84fe09921 Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Fri, 10 Dec 2010 22:56:31 -0500 Subject: [PATCH] js : _rows -> _clearFloat --- src/jquery.molequul.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/jquery.molequul.js b/src/jquery.molequul.js index ed625bf..8dbc59e 100755 --- a/src/jquery.molequul.js +++ b/src/jquery.molequul.js @@ -568,7 +568,7 @@ // ====================== rows ====================== - $.Molequul.prototype._rowsLayout = function( $elems ) { + $.Molequul.prototype._clearFloatLayout = function( $elems ) { var instance = this; return $elems.each( function() { var $this = $(this), @@ -593,7 +593,7 @@ }); }; - $.Molequul.prototype._rowsReset = function() { + $.Molequul.prototype._clearFloatReset = function() { this.clearFloat = { x : 0, y : 0, @@ -602,11 +602,11 @@ return this; }; - $.Molequul.prototype._rowsGetContainerSize = function () { + $.Molequul.prototype._clearFloatGetContainerSize = function () { return { height : this.clearFloat.height }; }; - $.Molequul.prototype._rowsResize = function() { + $.Molequul.prototype._clearFloatResize = function() { this.width = this.element.width(); return this.reLayout() };