Browse Source

Shape: Fix size calculations in loading to use better strategy (similar to popup)

pull/1191/merge
jlukic 10 years ago
parent
commit
c6d6d2296c
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/shape.js

2
src/definitions/modules/shape.js

@ -226,7 +226,7 @@ $.fn.shape = function(parameters) {
;
$activeSide.removeClass(className.active);
$nextSide.addClass(className.active);
$clone.prependTo($body);
$clone.insertAfter($module);
newSize = {
width : $nextSide.outerWidth(),
height : $nextSide.outerHeight()

Loading…
Cancel
Save