Sha256: e13d408cf34dc99e8d274884e4aaf35e9d497f81da4d626d794965c81727889a

Contents?: true

Size: 1.11 KB

Versions: 42

Compression:

Stored size: 1.11 KB

Contents

/*
 * jQuery UI Effects Transfer @VERSION
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Transfer
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function( $, undefined ) {

$.effects.transfer = function(o) {
	return this.queue(function() {
		var elem = $(this),
			target = $(o.options.to),
			endPosition = target.offset(),
			animation = {
				top: endPosition.top,
				left: endPosition.left,
				height: target.innerHeight(),
				width: target.innerWidth()
			},
			startPosition = elem.offset(),
			transfer = $('<div class="ui-effects-transfer"></div>')
				.appendTo(document.body)
				.addClass(o.options.className)
				.css({
					top: startPosition.top,
					left: startPosition.left,
					height: elem.innerHeight(),
					width: elem.innerWidth(),
					position: 'absolute'
				})
				.animate(animation, o.duration, o.options.easing, function() {
					transfer.remove();
					(o.callback && o.callback.apply(elem[0], arguments));
					elem.dequeue();
				});
	});
};

})(jQuery);

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
spiderfw-0.6.21 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.20 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.19 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.18 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.17 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.16 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.15 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.14 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.13 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.12 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.11 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.10 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.9 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.8 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.7 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.6 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.5 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.4 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.3 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js
spiderfw-0.6.2 apps/core/components/public/js/jquery/jquery-ui-1.8.11/ui/jquery.effects.transfer.js