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.bounce.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.bounce.js')
-rw-r--r-- | ui/jquery.effects.bounce.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.effects.bounce.js b/ui/jquery.effects.bounce.js index b307d4f53..ec4a77ec4 100644 --- a/ui/jquery.effects.bounce.js +++ b/ui/jquery.effects.bounce.js @@ -17,7 +17,7 @@ $.effects.bounce = 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 || 'effect'); // Set Mode |