Skip to content

Instantly share code, notes, and snippets.

@nofxx
Last active December 24, 2015 04:39
Show Gist options
  • Save nofxx/6745167 to your computer and use it in GitHub Desktop.
Save nofxx/6745167 to your computer and use it in GitHub Desktop.
Fix bootstrap tabs! Go back in F5/reload/etc
#
# Fix bootstrap tabs! Go back in F5/reload/etc
#
doc.on 'created', '.tab-fix', ->
hash = document.location.hash;
if (hash)
$(@).find("a[href='#{hash}']").tab('show')
for link in $(@).find('a')
do (link) ->
$(link).on 'click', (e) ->
window.location.hash = e.target.hash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment