mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
2e18aa8824
Fixes placeholder sizes when sorting post and dashboard meta boxes. git-svn-id: http://svn.automattic.com/wordpress/trunk@20660 1a063a9b-81f0-0310-95a4-ce76da25c4cd
5 lines
698 B
JavaScript
5 lines
698 B
JavaScript
/*! jQuery UI - v1.8.20 - 2012-04-30
|
|
* https://github.com/jquery/jquery-ui
|
|
* Includes: jquery.effects.transfer.js
|
|
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */
|
|
(function(a,b){a.effects.transfer=function(b){return this.queue(function(){var c=a(this),d=a(b.options.to),e=d.offset(),f={top:e.top,left:e.left,height:d.innerHeight(),width:d.innerWidth()},g=c.offset(),h=a('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(b.options.className).css({top:g.top,left:g.left,height:c.innerHeight(),width:c.innerWidth(),position:"absolute"}).animate(f,b.duration,b.options.easing,function(){h.remove(),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery); |