Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/lib/web/jquery/ui-modules/
Upload File :
Current File : /var/www/clients/client3/web2/web/lib/web/jquery/ui-modules/effect-fade.js

/*!
 * jQuery UI Effects Fade - v1.10.4
 * 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/
 */

define([
    'jquery',
    'jquery-ui-modules/effect'
], function ($, undefined) {

    $.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
        });
    };

});