diff options
author | Kevin Dalman <development@allpro.net> | 2010-12-13 13:02:31 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-12-13 13:02:31 -0500 |
commit | 208454934439482cdbef8ba67a8557a799d44abb (patch) | |
tree | 15e89e4d97111bd4d4ca6d39e9618a612f76bbfb /ui/jquery.effects.core.js | |
parent | f73d4217537e130e2f41a7ee6729585a5c229107 (diff) | |
download | jquery-ui-208454934439482cdbef8ba67a8557a799d44abb.tar.gz jquery-ui-208454934439482cdbef8ba67a8557a799d44abb.zip |
Effects: set right/bottom to 'auto' so effects work with dir=rtl. Fixed #6736 - Bug in slide effect when dir=rtl and has position.right.
Diffstat (limited to 'ui/jquery.effects.core.js')
-rw-r--r-- | ui/jquery.effects.core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.effects.core.js b/ui/jquery.effects.core.js index 9be704128..b2151d689 100644 --- a/ui/jquery.effects.core.js +++ b/ui/jquery.effects.core.js @@ -390,7 +390,7 @@ $.extend($.effects, { props[pos] = 'auto'; } }); - element.css({position: 'relative', top: 0, left: 0 }); + element.css({position: 'relative', top: 0, left: 0, right: 'auto', bottom: 'auto' }); } return wrapper.css(props).show(); |