mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-09 09:57:38 +01:00
26335af1ac
This updates the following `devDependencies`: - `dotenv` from `16.4.5` to `16.4.7` - `dotenv-expand` from `11.0.6` to `12.0.1` - `postcss` from `8.4.47` to `8.4.49` - `qunit` from `2.22.0` to `2.23.1` - `sass` from `1.79.4` to `1.79.6` - `terser-webpack-plugin` from `5.3.10` to `5.3.11` - `uglify-js` from `3.17.4` to `3.19.3` - `uuid` from `9.0.1` to `11.0.3` - `webpack` from `5.90.2` to `5.97.1` Additionally, `npm audit fix` has been run. Follow up to [58585]. See #62220. Built from https://develop.svn.wordpress.org/trunk@59509 git-svn-id: http://core.svn.wordpress.org/trunk@58895 1a063a9b-81f0-0310-95a4-ce76da25c4cd
9 lines
958 B
JavaScript
9 lines
958 B
JavaScript
/*!
|
|
* jQuery UI Effects Bounce 1.13.3
|
|
* https://jqueryui.com
|
|
*
|
|
* Copyright OpenJS Foundation and other contributors
|
|
* Released under the MIT license.
|
|
* https://jquery.org/license
|
|
*/
|
|
(e=>{"function"==typeof define&&define.amd?define(["jquery","../version","../effect"],e):e(jQuery)})(function(l){return l.effects.define("bounce",function(e,t){var i,n,o=l(this),f=e.mode,a="hide"===f,f="show"===f,c=e.direction||"up",u=e.distance,s=e.times||5,d=2*s+(f||a?1:0),r=e.duration/d,p=e.easing,h="up"===c||"down"===c?"top":"left",m="up"===c||"left"===c,y=0,e=o.queue().length;for(l.effects.createPlaceholder(o),c=o.css(h),u=u||o["top"==h?"outerHeight":"outerWidth"]()/3,f&&((n={opacity:1})[h]=c,o.css("opacity",0).css(h,m?2*-u:2*u).animate(n,r,p)),a&&(u/=Math.pow(2,s-1)),(n={})[h]=c;y<s;y++)(i={})[h]=(m?"-=":"+=")+u,o.animate(i,r,p).animate(n,r,p),u=a?2*u:u/2;a&&((i={opacity:0})[h]=(m?"-=":"+=")+u,o.animate(i,r,p)),o.queue(t),l.effects.unshift(o,e,1+d)})}); |