I\'m currently trying to display a bootstrap modal in which I want to include a PDF file with the \"object\" html tag. Problem is that nothing seems to display.
I\'v
I have found that bootstrap include a css property that affect to pdf viewing in a modal window.
Change this:
.modal.in .modal-dialog {
transform: translate(0px, 0px);
}
to:
.modal.in .modal-dialog {
transform: none;
}
If this property is changed everything works properly.
You can see in action:
http://jsfiddle.net/mV6jJ/20/