Skip to content

Commit ca3d451

Browse files
arschmitzscottgonzalez
authored andcommitted
Accordion: Fix line length issues
Ref jquerygh-1690
1 parent adbd694 commit ca3d451

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/widgets/accordion.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,8 @@ return $.widget( "ui.accordion", {
239239
this._processPanels();
240240

241241
// Was collapsed or no panel
242-
if ( ( options.active === false && options.collapsible === true ) || !this.headers.length ) {
242+
if ( ( options.active === false && options.collapsible === true ) ||
243+
!this.headers.length ) {
243244
options.active = false;
244245
this.active = $();
245246

0 commit comments

Comments
 (0)