Skip to content

Commit

Permalink
effects.core: fixed parsing of IE left/top values in createWrapper (c…
Browse files Browse the repository at this point in the history
…loses #2915)
  • Loading branch information
Paul Bakaus committed May 25, 2008
1 parent 074bd8d commit b391290
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/source/effects.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
wrapper.css({position: 'relative'});
el.css({position: 'relative'});
} else {
var top = parseInt(el.css('top'), 10); if (top.constructor != Number) top = 'auto';
var left = parseInt(el.css('left'), 10); if (left.constructor != Number) left = 'auto';
var top = parseInt(el.css('top'), 10); if(isNaN(top)) top = 'auto';
var left = parseInt(el.css('left'), 10); if(isNaN(top)) left = 'auto';
wrapper.css({ position: el.css('position'), top: top, left: left, zIndex: el.css('z-index') }).show();
el.css({position: 'relative', top:0, left:0});
}
Expand Down

0 comments on commit b391290

Please sign in to comment.