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-15 23:43:51 -0500 |
commit | b475ae74dfc72a46b2ed7e988ffad461e76b2ea2 (patch) | |
tree | f25e4e14dbf2e2ae3756f634a53a7c698f7b90d1 /ui/jquery.effects.blind.js | |
parent | b5601cc9f919e28332dca1ebabe77724b1b7d8e8 (diff) | |
download | jquery-ui-b475ae74dfc72a46b2ed7e988ffad461e76b2ea2.tar.gz jquery-ui-b475ae74dfc72a46b2ed7e988ffad461e76b2ea2.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.blind.js')
-rw-r--r-- | ui/jquery.effects.blind.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.effects.blind.js b/ui/jquery.effects.blind.js index 9dc7067a9..44f398a55 100644 --- a/ui/jquery.effects.blind.js +++ b/ui/jquery.effects.blind.js @@ -17,7 +17,7 @@ $.effects.blind = function(o) { return this.queue(function() { // Create element - var el = $(this), props = ['position','top','left']; + var el = $(this), props = ['position','top','bottom','left','right']; // Set options var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode |