Skip to content

Instantly share code, notes, and snippets.

@rgcarrasqueira
Forked from amdest/gist:2935783
Created September 8, 2013 17:07
Show Gist options
  • Save rgcarrasqueira/6486512 to your computer and use it in GitHub Desktop.
Save rgcarrasqueira/6486512 to your computer and use it in GitHub Desktop.
// https://github.com/twitter/bootstrap/issues/675#issuecomment-6184243
$('#feedback-modal').modal({
backdrop: true,
keyboard: true
}).css({
'width': function () {
return ($(document).width() * .9) + 'px';
},
'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