Accordion: Don't handle hover/focus when disabled. Fixes #5330 - Accordion headers still show rollover when disabled.

This commit is contained in:
Scott González 2010-07-13 09:10:43 -04:00
parent 2bf91e8e28
commit 551bf6e1e7

View File

@ -42,11 +42,24 @@ $.widget("ui.accordion", {
// in lack of child-selectors in CSS we need to mark top-LIs in a UL-accordion for some IE-fix
this.element.children("li").addClass("ui-accordion-li-fix");
this.headers = this.element.find(o.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all")
.bind("mouseenter.accordion", function(){ $(this).addClass('ui-state-hover'); })
.bind("mouseleave.accordion", function(){ $(this).removeClass('ui-state-hover'); })
.bind("focus.accordion", function(){ $(this).addClass('ui-state-focus'); })
.bind("blur.accordion", function(){ $(this).removeClass('ui-state-focus'); });
this.headers = this.element.find(o.header)
.addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all")
.bind("mouseenter.accordion", function() {
if (o.disabled) { return; }
$(this).addClass('ui-state-hover');
})
.bind("mouseleave.accordion", function() {
if (o.disabled) { return; }
$(this).removeClass('ui-state-hover');
})
.bind("focus.accordion", function() {
if (o.disabled) { return; }
$(this).addClass('ui-state-focus');
})
.bind("blur.accordion", function() {
if (o.disabled) { return; }
$(this).removeClass('ui-state-focus');
});
this.headers
.next()