Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mikel-code/919644b9efc26d00ce10 to your computer and use it in GitHub Desktop.
Save mikel-code/919644b9efc26d00ce10 to your computer and use it in GitHub Desktop.
$('div.modal').on('show.bs.modal', function() {
var modal = this;
var hash = modal.id;
window.location.hash = hash;
window.onhashchange = function() {
if (!location.hash){
$(modal).modal('hide');
}
}
});
$('div.modal').on('hide', function() {
var hash = this.id;
history.pushState('', document.title, window.location.pathname);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment