From: jzaefferer Date: Sat, 3 Apr 2010 15:14:01 +0000 (+0200) Subject: Accordion: Fixed case for tabIndex (was tabindex), fixes failing destroy-test in IE6 X-Git-Tag: 1.8.1~5^2~34 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cae15a4d374168fa2af7fd8d8d13c286a9a8a3c9;p=jquery-ui.git Accordion: Fixed case for tabIndex (was tabindex), fixes failing destroy-test in IE6 --- diff --git a/ui/jquery.ui.accordion.js b/ui/jquery.ui.accordion.js index bce78231b..0ac478b73 100644 --- a/ui/jquery.ui.accordion.js +++ b/ui/jquery.ui.accordion.js @@ -140,9 +140,9 @@ $.widget("ui.accordion", { this.headers .unbind(".accordion") .removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top") - .removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex"); + .removeAttr("role").removeAttr("aria-expanded").removeAttr("tabIndex"); - this.headers.find("a").removeAttr("tabindex"); + this.headers.find("a").removeAttr("tabIndex"); this._destroyIcons(); var contents = this.headers.next().css("display", "").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active"); if (o.autoHeight || o.fillHeight) {