From ca3d4511c4ffc49bf7fcd2beca46d135d73660c7 Mon Sep 17 00:00:00 2001 From: Alexander Schmitz Date: Wed, 30 Mar 2016 23:43:59 -0400 Subject: [PATCH] Accordion: Fix line length issues Ref gh-1690 --- ui/widgets/accordion.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/widgets/accordion.js b/ui/widgets/accordion.js index 359b4c46f..a234c272f 100644 --- a/ui/widgets/accordion.js +++ b/ui/widgets/accordion.js @@ -239,7 +239,8 @@ return $.widget( "ui.accordion", { this._processPanels(); // Was collapsed or no panel - if ( ( options.active === false && options.collapsible === true ) || !this.headers.length ) { + if ( ( options.active === false && options.collapsible === true ) || + !this.headers.length ) { options.active = false; this.active = $();