aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects.bounce.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2008-09-19 14:20:14 +0000
committerScott González <scott.gonzalez@gmail.com>2008-09-19 14:20:14 +0000
commit7c2e7965e90896b3ccf8525aeebfe2b9242203ff (patch)
treeaec37d89461d5d9b14979523f3f82b8b7440f97c /ui/effects.bounce.js
parent8d04c3594c4bd56ee2b86068e002b7566359df14 (diff)
downloadjquery-ui-7c2e7965e90896b3ccf8525aeebfe2b9242203ff.tar.gz
jquery-ui-7c2e7965e90896b3ccf8525aeebfe2b9242203ff.zip
Reverted r695.
Diffstat (limited to 'ui/effects.bounce.js')
-rw-r--r--ui/effects.bounce.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/effects.bounce.js b/ui/effects.bounce.js
index 932bdde85..f4d347505 100644
--- a/ui/effects.bounce.js
+++ b/ui/effects.bounce.js
@@ -4,7 +4,7 @@
* Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
- *
+ *
* http://docs.jquery.com/UI/Effects/Bounce
*
* Depends:
@@ -36,7 +36,7 @@ $.effects.bounce = function(o) {
if (mode == 'show') el.css('opacity', 0).css(ref, motion == 'pos' ? -distance : distance); // Shift
if (mode == 'hide') distance = distance / (times * 2);
if (mode != 'hide') times--;
-
+
// Animate
if (mode == 'show') { // Show Bounce
var animation = {opacity: 1};
@@ -72,7 +72,7 @@ $.effects.bounce = function(o) {
el.queue('fx', function() { el.dequeue(); });
el.dequeue();
});
-
+
};
})(jQuery);