Sha256: 5be31ce587b637a468d4db51471e146420928dbb189b48a288fe29309c37958b

Contents?: true

Size: 1.26 KB

Versions: 13

Compression:

Stored size: 1.26 KB

Contents

/*
 * jQuery UI Effects Highlight 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Highlight
 *
 * Depends:
 *	effects.core.js
 */
(function($) {

$.effects.highlight = function(o) {

	return this.queue(function() {

		// Create element
		var el = $(this), props = ['backgroundImage','backgroundColor','opacity'];

		// Set options
		var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode
		var color = o.options.color || "#ffff99"; // Default highlight color
		var oldColor = el.css("backgroundColor");

		// Adjust
		$.effects.save(el, props); el.show(); // Save & Show
		el.css({backgroundImage: 'none', backgroundColor: color}); // Shift

		// Animation
		var animation = {backgroundColor: oldColor };
		if (mode == "hide") animation['opacity'] = 0;

		// Animate
		el.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() {
			if(mode == "hide") el.hide();
			$.effects.restore(el, props);
		if (mode == "show" && $.browser.msie) this.style.removeAttribute('filter');
			if(o.callback) o.callback.apply(this, arguments);
			el.dequeue();
		}});

	});

};

})(jQuery);

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
spiderfw-0.5.13 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.12 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.11 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.10 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.9 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.7 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.6 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.5 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.4 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.3 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.2 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5.1 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
spiderfw-0.5 apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js