Browse Source

js : _rows -> _clearFloat

pull/14/head
David DeSandro 14 years ago
parent
commit
e1863cfd38
  1. 8
      src/jquery.molequul.js

8
src/jquery.molequul.js

@ -568,7 +568,7 @@
// ====================== rows ====================== // ====================== rows ======================
$.Molequul.prototype._rowsLayout = function( $elems ) { $.Molequul.prototype._clearFloatLayout = function( $elems ) {
var instance = this; var instance = this;
return $elems.each( function() { return $elems.each( function() {
var $this = $(this), var $this = $(this),
@ -593,7 +593,7 @@
}); });
}; };
$.Molequul.prototype._rowsReset = function() { $.Molequul.prototype._clearFloatReset = function() {
this.clearFloat = { this.clearFloat = {
x : 0, x : 0,
y : 0, y : 0,
@ -602,11 +602,11 @@
return this; return this;
}; };
$.Molequul.prototype._rowsGetContainerSize = function () { $.Molequul.prototype._clearFloatGetContainerSize = function () {
return { height : this.clearFloat.height }; return { height : this.clearFloat.height };
}; };
$.Molequul.prototype._rowsResize = function() { $.Molequul.prototype._clearFloatResize = function() {
this.width = this.element.width(); this.width = this.element.width();
return this.reLayout() return this.reLayout()
}; };

Loading…
Cancel
Save