Fix toggle for toggler_behavior

This commit is contained in:
Clement Ho 2018-04-16 10:49:18 -05:00
parent 6d0e5ed53f
commit a290c92bb9
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ $(() => {
$container
.find('.js-toggle-content')
.toggleClass('hidden', toggleState);
.toggle(toggleState);
}
$('body').on('click', '.js-toggle-button', function toggleButton(e) {