diff options
author | 2013-02-26 23:44:34 +0100 | |
---|---|---|
committer | 2013-02-26 23:44:34 +0100 | |
commit | 52ad2e19bf824cbaa6e6f96d6c8e71561e865819 (patch) | |
tree | 2f2bf5dde7ef9bf5c987513be996f06c8421b021 /module/web/static/js/libs/jqueryui/effects/fade.js | |
parent | improved file view, added default plugin icon (diff) | |
download | pyload-52ad2e19bf824cbaa6e6f96d6c8e71561e865819.tar.xz |
updated js libraries, cleaned jquery-ui
Diffstat (limited to 'module/web/static/js/libs/jqueryui/effects/fade.js')
-rw-r--r-- | module/web/static/js/libs/jqueryui/effects/fade.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/module/web/static/js/libs/jqueryui/effects/fade.js b/module/web/static/js/libs/jqueryui/effects/fade.js deleted file mode 100644 index c31973c74..000000000 --- a/module/web/static/js/libs/jqueryui/effects/fade.js +++ /dev/null @@ -1,35 +0,0 @@ -define(['jquery','./effects/core'], function (jQuery) { -/*! - * jQuery UI Effects Fade 1.8.23 - * - * Copyright 2012, 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/Fade - * - * Depends: - * jquery.effects.core.js - */ -(function( $, undefined ) { - -$.effects.fade = function(o) { - return this.queue(function() { - var elem = $(this), - mode = $.effects.setMode(elem, o.options.mode || 'hide'); - - elem.animate({ opacity: mode }, { - queue: false, - duration: o.duration, - easing: o.options.easing, - complete: function() { - (o.callback && o.callback.apply(this, arguments)); - elem.dequeue(); - } - }); - }); -}; - -})(jQuery); - -});
\ No newline at end of file |