diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-11-18 01:54:45 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-11-18 01:54:45 +0000 |
commit | 291202dabe4dbb708d1cff5c35e13770e191d82f (patch) | |
tree | f0cfc13b44758d4dd4e2f3eb89a6ece070fc164b /ui/effects.highlight.js | |
parent | e0dec0bd8476fa1af090cc6e473c1e135084ebdf (diff) | |
download | jquery-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.js | 2 |
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(); }}); |