Encountering an issue with the bootstrap modal on iPhone Safari 6+ in landscape mode. This glitch only happens when using multiple tabs on the browser.
Follow these steps to replicate the problem:
1) Visit http://getbootstrap.com/javascript/ on your iPhone 6+ in landscape mode - make sure to have multiple tabs open
2) Scroll down and click on the "Small Modal" button in the Optional size section.
3) The modal will briefly appear and disappear, leaving a grey background. No further interactions are possible.
4) Attempt to hide the navigation and tab bars by scrolling up, which should reveal the bootstrap modal. However, this workaround doesn't function when multiple tabs are open.
Initial investigation suggests the issue may lie within the .modal-open
CSS styling:
.modal-open {
overflow: hidden;
position: fixed;
width: 100%;
}
A solution is needed for this problem. Any suggestions or ideas?