aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects.transfer.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.transfer.js
parent8d04c3594c4bd56ee2b86068e002b7566359df14 (diff)
downloadjquery-ui-7c2e7965e90896b3ccf8525aeebfe2b9242203ff.tar.gz
jquery-ui-7c2e7965e90896b3ccf8525aeebfe2b9242203ff.zip
Reverted r695.
Diffstat (limited to 'ui/effects.transfer.js')
-rw-r--r--ui/effects.transfer.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/ui/effects.transfer.js b/ui/effects.transfer.js
index 2754493d9..4c4b6588a 100644
--- a/ui/effects.transfer.js
+++ b/ui/effects.transfer.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/Transfer
*
* Depends:
@@ -18,14 +18,14 @@ $.effects.transfer = function(o) {
// Create element
var el = $(this);
-
+
// Set options
var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode
var target = $(o.options.to); // Find Target
var position = el.offset();
var transfer = $('<div class="ui-effects-transfer"></div>').appendTo(document.body);
if(o.options.className) transfer.addClass(o.options.className);
-
+
// Set target css
transfer.addClass(o.options.className);
transfer.css({
@@ -35,7 +35,7 @@ $.effects.transfer = function(o) {
width: el.outerWidth() - parseInt(transfer.css('borderLeftWidth')) - parseInt(transfer.css('borderRightWidth')),
position: 'absolute'
});
-
+
// Animation
position = target.offset();
animation = {
@@ -44,16 +44,16 @@ $.effects.transfer = function(o) {
height: target.outerHeight() - parseInt(transfer.css('borderTopWidth')) - parseInt(transfer.css('borderBottomWidth')),
width: target.outerWidth() - parseInt(transfer.css('borderLeftWidth')) - parseInt(transfer.css('borderRightWidth'))
};
-
+
// Animate
transfer.animate(animation, o.duration, o.options.easing, function() {
transfer.remove(); // Remove div
if(o.callback) o.callback.apply(el[0], arguments); // Callback
el.dequeue();
- });
-
+ });
+
});
-
+
};
})(jQuery);