Created
April 28, 2014 11:05
-
-
Save erezLieberman/11368553 to your computer and use it in GitHub Desktop.
Bootstrap 3 accordion styling on open/closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Bootstrap 3 accordion styling on open/closed | |
| $('.panel').on('show.bs.collapse', function () { | |
| $(this).addClass('active'); | |
| }); | |
| $('.panel').on('hide.bs.collapse', function () { | |
| $(this).removeClass('active'); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment