Skip to content

Commit

Permalink
Issue #1: Start off completely closed?
Browse files Browse the repository at this point in the history
Resolves #1
  • Loading branch information
alanmels authored Oct 12, 2021
1 parent d5ab1d4 commit 1f96644
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paragraphs_jquery_ui_accordion.module
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ function paragraphs_jquery_ui_accordion_field_formatter_view($entity_type, $enti
array(
'data' => array('paragraphs_jquery_ui_accordion' => array(
'ids' => array($entity_id => $accordion_id),
'autoscroll' => $settings['autoscroll'],
'startclosed' => $settings['startclosed'],
'autoscroll' => isset($settings['autoscroll']),
'startclosed' => isset($settings['startclosed']),
)),
'type' => 'setting',
),
Expand Down

0 comments on commit 1f96644

Please sign in to comment.