Skip to content

Commit

Permalink
Partial fix for #3773
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed May 12, 2009
1 parent 41798e1 commit 7f2cbf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/effects.highlight.js
Expand Up @@ -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" && $.browser.msie) this.style.removeAttribute('filter');
if (mode == "show" && !$.support.opacity) this.style.removeAttribute('filter');
if(o.callback) o.callback.apply(this, arguments);
el.dequeue();
}});
Expand Down
2 changes: 1 addition & 1 deletion ui/ui.tabs.js
Expand Up @@ -262,7 +262,7 @@ $.widget("ui.tabs", {
// and prevent IE's ClearType bug...
function resetStyle($el, fx) {
$el.css({ display: '' });
if ($.browser.msie && fx.opacity) {
if (!$.support.opacity && fx.opacity) {
$el[0].style.removeAttribute('filter');
}
}
Expand Down

0 comments on commit 7f2cbf8

Please sign in to comment.