mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
04edb0a1d6
Because jQUI's build process no longer provides individual minified files we need some additional changes: * Rename all files, remove the "jquery.ui." prefix. Add old files to `$_old_files`. * Add and use non-minified files in /src. * Add grunt task to minify jQuery UI files. * (Non-minified files will not be shipped.) Changelogs: * http://jqueryui.com/changelog/1.11.0/ * http://jqueryui.com/changelog/1.11.1/ props Fab1en, ocean90. fixes #29833. Built from https://develop.svn.wordpress.org/trunk@29847 git-svn-id: http://core.svn.wordpress.org/trunk@29610 1a063a9b-81f0-0310-95a4-ce76da25c4cd
11 lines
1002 B
JavaScript
11 lines
1002 B
JavaScript
/*!
|
|
* jQuery UI Effects Drop 1.11.1
|
|
* http://jqueryui.com
|
|
*
|
|
* Copyright 2014 jQuery Foundation and other contributors
|
|
* Released under the MIT license.
|
|
* http://jquery.org/license
|
|
*
|
|
* http://api.jqueryui.com/drop-effect/
|
|
*/
|
|
!function(a){"function"==typeof define&&define.amd?define(["jquery","./effect"],a):a(jQuery)}(function(a){return a.effects.effect.drop=function(b,c){var d,e=a(this),f=["position","top","bottom","left","right","opacity","height","width"],g=a.effects.setMode(e,b.mode||"hide"),h="show"===g,i=b.direction||"left",j="up"===i||"down"===i?"top":"left",k="up"===i||"left"===i?"pos":"neg",l={opacity:h?1:0};a.effects.save(e,f),e.show(),a.effects.createWrapper(e),d=b.distance||e["top"===j?"outerHeight":"outerWidth"](!0)/2,h&&e.css("opacity",0).css(j,"pos"===k?-d:d),l[j]=(h?"pos"===k?"+=":"-=":"pos"===k?"-=":"+=")+d,e.animate(l,{queue:!1,duration:b.duration,easing:b.easing,complete:function(){"hide"===g&&e.hide(),a.effects.restore(e,f),a.effects.removeWrapper(e),c()}})}}); |