aboutsummaryrefslogtreecommitdiffstats
path: root/template-common/lib/ui/effects.bounce.js
diff options
context:
space:
mode:
Diffstat (limited to 'template-common/lib/ui/effects.bounce.js')
-rw-r--r--template-common/lib/ui/effects.bounce.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/template-common/lib/ui/effects.bounce.js b/template-common/lib/ui/effects.bounce.js
index 4bb489d7f..646133261 100644
--- a/template-common/lib/ui/effects.bounce.js
+++ b/template-common/lib/ui/effects.bounce.js
@@ -1,10 +1,10 @@
/*
- * jQuery UI Effects Bounce
+ * jQuery UI Effects Bounce 1.7.2
*
- * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* 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);