Skip to content

Instantly share code, notes, and snippets.

@wsakaren
Created May 8, 2016 05:17
Show Gist options
  • Save wsakaren/8352d3de42eacea2d08fe4d59cc1c5cc to your computer and use it in GitHub Desktop.
Save wsakaren/8352d3de42eacea2d08fe4d59cc1c5cc to your computer and use it in GitHub Desktop.
Coffeescript that will save and re-load the open/closed accordions for twitter bootstrap.
$('.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