Avoid fatal error with FlaggedRevs when running rebuildFileCache.php
[mediawiki.git] / resources / lib / jquery.ui / jquery.ui.effect-highlight.js
blobd901f80ec1f812611561b6ccadb0d7ebed4992ef
1 /*!
2 * jQuery UI Effects Highlight 1.9.2
3 * http://jqueryui.com
5 * Copyright 2012 jQuery Foundation and other contributors
6 * Released under the MIT license.
7 * http://jquery.org/license
9 * http://api.jqueryui.com/highlight-effect/
11 * Depends:
12 * jquery.ui.effect.js
14 (function( $, undefined ) {
16 $.effects.effect.highlight = function( o, done ) {
17 var elem = $( this ),
18 props = [ "backgroundImage", "backgroundColor", "opacity" ],
19 mode = $.effects.setMode( elem, o.mode || "show" ),
20 animation = {
21 backgroundColor: elem.css( "backgroundColor" )
24 if (mode === "hide") {
25 animation.opacity = 0;
28 $.effects.save( elem, props );
30 elem
31 .show()
32 .css({
33 backgroundImage: "none",
34 backgroundColor: o.color || "#ffff99"
36 .animate( animation, {
37 queue: false,
38 duration: o.duration,
39 easing: o.easing,
40 complete: function() {
41 if ( mode === "hide" ) {
42 elem.hide();
44 $.effects.restore( elem, props );
45 done();
47 });
50 })(jQuery);