Created
May 8, 2016 05:17
-
-
Save birchestx/8352d3de42eacea2d08fe4d59cc1c5cc to your computer and use it in GitHub Desktop.
Coffeescript that will save and re-load the open/closed accordions for twitter bootstrap.
This file contains 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
$('.panel-collapse').on 'hidden.bs.collapse', -> | |
if @id | |
localStorage.removeItem @id | |
return | |
$('.panel-collapse').on 'shown.bs.collapse', -> | |
if @id | |
localStorage[@id] = 'true' | |
return | |
$('.panel-collapse').each -> | |
#localStorage.removeItem @id | |
if @id and localStorage[@id] == 'true' | |
$(this).collapse 'show' | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment