aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects.bounce.js
diff options
context:
space:
mode:
authorEduardo Lundgren <eduardolundgren@gmail.com>2008-09-19 14:08:41 +0000
committerEduardo Lundgren <eduardolundgren@gmail.com>2008-09-19 14:08:41 +0000
commit8d04c3594c4bd56ee2b86068e002b7566359df14 (patch)
tree54fc356f1f8d908c65b437541fbf895b2a96db94 /ui/effects.bounce.js
parentfaec9388e2f9890e33c368b459ab164eda019e62 (diff)
downloadjquery-ui-8d04c3594c4bd56ee2b86068e002b7566359df14.tar.gz
jquery-ui-8d04c3594c4bd56ee2b86068e002b7566359df14.zip
Remove Trailing Spaces
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 f4d347505..932bdde85 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);