aboutsummaryrefslogtreecommitdiffstats
path: root/template-common/lib/ui/effects.highlight.js
diff options
context:
space:
mode:
Diffstat (limited to 'template-common/lib/ui/effects.highlight.js')
-rw-r--r--template-common/lib/ui/effects.highlight.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/template-common/lib/ui/effects.highlight.js b/template-common/lib/ui/effects.highlight.js
index cc69f4d48..828d059ab 100644
--- a/template-common/lib/ui/effects.highlight.js
+++ b/template-common/lib/ui/effects.highlight.js
@@ -1,48 +1,48 @@
/*
- * jQuery UI Effects Highlight
+ * jQuery UI Effects Highlight 1.7.2
*
- * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * 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($) {
+(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" && jQuery.browser.msie) this.style.removeAttribute('filter');
+ if (mode == "show" && $.browser.msie) this.style.removeAttribute('filter');
if(o.callback) o.callback.apply(this, arguments);
el.dequeue();
}});
-
+
});
-
+
};
})(jQuery);