Sha256: 1e5ddb0ba28bbfa707ef983cb86c4bc5bc90b49f9b06ecf0607e245b0863d353

Contents?: true

Size: 738 Bytes

Versions: 5

Compression:

Stored size: 738 Bytes

Contents

/*!
 * jQuery UI Effects Fade 1.11.2
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/fade-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.fade = function( o, done ) {
	var el = $( this ),
		mode = $.effects.setMode( el, o.mode || "toggle" );

	el.animate({
		opacity: mode
	}, {
		queue: false,
		duration: o.duration,
		easing: o.easing,
		complete: done
	});
};

}));

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
simpletool-0.0.3 lib/support/phpmyadmin/phpmyadmin/js/jquery/src/jquery-ui/effect-fade.js
simpletool-0.0.2 lib/support/phpmyadmin/phpmyadmin/js/jquery/src/jquery-ui/effect-fade.js
catscope-0.0.3 assets/bower_components/jquery-ui/ui/effect-fade.js
catscope-0.0.2 assets/bower_components/jquery-ui/ui/effect-fade.js
catscope-0.0.1 assets/bower_components/jquery-ui/ui/effect-fade.js