dimsemenov / Magnific-Popup

Light and responsive lightbox script with focus on performance.
http://dimsemenov.com/plugins/magnific-popup/
MIT License
11.39k stars 3.48k forks source link

Magnific model popup closing on outside click in iphone #965

Closed afelixj closed 7 years ago

afelixj commented 7 years ago

While checking the modal popup in iphone simulation in chrome developer, I noticed, after scrolling, it is possible to click and close in the bottom area.

I have posted a question in stackoverflow also. http://stackoverflow.com/questions/42886454/magnific-modal-popup-closed-on-outside-click-in-iphone

Looking forward for a solution

Thanks

ghost commented 7 years ago

The issue is where the container is set as absolute. A solution would be the following:

.mfp-container {
    position:fixed;
}

That way, .mfp-container is never out of the viewport