Skip to content

Instantly share code, notes, and snippets.

@GuyHarwood
Created May 23, 2013 14:11
Show Gist options
  • Save GuyHarwood/5636343 to your computer and use it in GitHub Desktop.
Save GuyHarwood/5636343 to your computer and use it in GitHub Desktop.
auto positioning modal for bootstrap
$('#my-modal').modal({
backdrop: true,
keyboard: true
}).css({
width: 'auto',
'margin-left': function () {
return -($(this).width() / 2);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment