Sha256: 14dbda68655b227e5b3b04475283302eb570e83fbaed21883f601fe042d5bcd2

Contents?: true

Size: 1.61 KB

Versions: 18

Compression:

Stored size: 1.61 KB

Contents

/*!
 * jQuery UI Effects Slide 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/slide-effect/
 */
(function( factory ) {
	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define([
			"jquery",
			"./effect"
		], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
}(function( $ ) {

return $.effects.effect.slide = function( o, done ) {

	// Create element
	var el = $( this ),
		props = [ "position", "top", "bottom", "left", "right", "width", "height" ],
		mode = $.effects.setMode( el, o.mode || "show" ),
		show = mode === "show",
		direction = o.direction || "left",
		ref = (direction === "up" || direction === "down") ? "top" : "left",
		positiveMotion = (direction === "up" || direction === "left"),
		distance,
		animation = {};

	// Adjust
	$.effects.save( el, props );
	el.show();
	distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true );

	$.effects.createWrapper( el ).css({
		overflow: "hidden"
	});

	if ( show ) {
		el.css( ref, positiveMotion ? (isNaN(distance) ? "-" + distance : -distance) : distance );
	}

	// Animation
	animation[ ref ] = ( show ?
		( positiveMotion ? "+=" : "-=") :
		( positiveMotion ? "-=" : "+=")) +
		distance;

	// Animate
	el.animate( animation, {
		queue: false,
		duration: o.duration,
		easing: o.easing,
		complete: function() {
			if ( mode === "hide" ) {
				el.hide();
			}
			$.effects.restore( el, props );
			$.effects.removeWrapper( el );
			done();
		}
	});
};

}));

Version data entries

18 entries across 18 versions & 5 rubygems

Version Path
radius-rails-3.1.4 app/assets/components/jquery-ui/ui/effect-slide.js
catscope-0.1.6 assets/bower_components/jquery-ui/ui/effect-slide.js
catscope-0.1.5 assets/bower_components/jquery-ui/ui/effect-slide.js
jinda_lte-0.0.1 lib/generators/jinda_lte/templates/app/assets/jinda_assets/bower_components/jquery-ui/ui/effect-slide.js
catscope-0.1.4 assets/bower_components/jquery-ui/ui/effect-slide.js
catscope-0.1.3 assets/bower_components/jquery-ui/ui/effect-slide.js
catscope-0.1.2 assets/bower_components/jquery-ui/ui/effect-slide.js
catscope-0.1.1 assets/bower_components/jquery-ui/ui/effect-slide.js
rubyneat_dashboard-0.4.1 bower_components/jquery-ui/ui/effect-slide.js
date_picker-0.0.8 test/dummy/vendor/assets/components/jquery-ui/ui/effect-slide.js
date_picker-0.0.7 test/dummy/vendor/assets/components/jquery-ui/ui/effect-slide.js
date_picker-0.0.6 test/dummy/vendor/assets/components/jquery-ui/ui/effect-slide.js
date_picker-0.0.5 test/dummy/vendor/assets/components/jquery-ui/ui/effect-slide.js
date_picker-0.0.4 test/dummy/vendor/assets/components/jquery-ui/ui/effect-slide.js
date_picker-0.0.3 test/dummy/vendor/assets/components/jquery-ui/ui/effect-slide.js
date_picker-0.0.2 test/dummy/vendor/assets/components/jquery-ui/ui/effect-slide.js
date_picker-0.0.1 test/dummy/vendor/assets/components/jquery-ui/ui/effect-slide.js
catscope-0.1.0 assets/bower_components/jquery-ui/ui/effect-slide.js