diff options
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(); }}); |