Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Accordion: Properly set corner classes on refresh. Fixes #8995 - Acco…
…rdion: Corner display issues.
  • Loading branch information
scottgonzalez committed Jan 22, 2013
1 parent a63c091 commit 673c655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/jquery.ui.accordion.js
Expand Up @@ -262,8 +262,8 @@ $.widget( "ui.accordion", {
(this.element.attr( "id" ) || ++uid);

this.active = this._findActive( options.active )
.addClass( "ui-accordion-header-active ui-state-active" )
.toggleClass( "ui-corner-all ui-corner-top" );
.addClass( "ui-accordion-header-active ui-state-active ui-corner-top" )
.removeClass( "ui-corner-all" );
this.active.next()
.addClass( "ui-accordion-content-active" )
.show();
Expand Down

0 comments on commit 673c655

Please sign in to comment.