Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accordion: Attempt at improving animation. #587

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Merge branch 'master' into accordion-animation
Conflicts:
	ui/jquery.ui.accordion.js
  • Loading branch information
scottgonzalez committed Feb 12, 2012
commit 746035644c00df2863471758c54b31ff4a7fe1cc
4 changes: 2 additions & 2 deletions ui/jquery.ui.accordion.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ $.widget( "ui.accordion", {
_create: function() {
var options = this.options;

self.prevShow = self.prevHide = $();
self.element.addClass( "ui-accordion ui-widget ui-helper-reset" );
this.prevShow = this.prevHide = $();
this.element.addClass( "ui-accordion ui-widget ui-helper-reset" );

this.headers = this.element.find( options.header )
.addClass( "ui-accordion-header ui-helper-reset ui-state-default ui-corner-all" );
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.