mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 04:11:10 +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
796 B
JavaScript
5 lines
796 B
JavaScript
/*! jQuery UI - v1.8.20 - 2012-04-30
|
|
* https://github.com/jquery/jquery-ui
|
|
* Includes: jquery.effects.highlight.js
|
|
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */
|
|
(function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery); |