source: trunk/themes/default/js/ui/minified/jquery.effects.fade.min.js @ 12525

Last change on this file since 12525 was 12525, checked in by patdenice, 12 years ago

feature:2487
Update jQuery to 1.6.4 and jQuery UI to 1.8.16

File size: 577 bytes
Line 
1/*
2 * jQuery UI Effects Fade 1.8.16
3 *
4 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 * Dual licensed under the MIT or GPL Version 2 licenses.
6 * http://jquery.org/license
7 *
8 * http://docs.jquery.com/UI/Effects/Fade
9 *
10 * Depends:
11 *      jquery.effects.core.js
12 */
13(function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery);
Note: See TracBrowser for help on using the repository browser.