aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects.highlight.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2008-11-18 01:54:45 +0000
committerScott González <scott.gonzalez@gmail.com>2008-11-18 01:54:45 +0000
commit291202dabe4dbb708d1cff5c35e13770e191d82f (patch)
treef0cfc13b44758d4dd4e2f3eb89a6ece070fc164b /ui/effects.highlight.js
parente0dec0bd8476fa1af090cc6e473c1e135084ebdf (diff)
downloadjquery-ui-291202dabe4dbb708d1cff5c35e13770e191d82f.tar.gz
jquery-ui-291202dabe4dbb708d1cff5c35e13770e191d82f.zip
Various: Fixed #3596: Removed references to jQuery for .noConflict() compatibility.
Diffstat (limited to 'ui/effects.highlight.js')
-rw-r--r--ui/effects.highlight.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/effects.highlight.js b/ui/effects.highlight.js
index 72a3b762f..038b9d6a7 100644
--- a/ui/effects.highlight.js
+++ b/ui/effects.highlight.js
@@ -36,7 +36,7 @@ $.effects.highlight = function(o) {
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();
}});