NO BUG: Prevent popup window from closing outside the window

Since there is no such function, then this is a BUG!
Seriously, there are times when it is very necessary to prohibit the closing of the window. A person enters some information, accidentally pokes somewhere and that’s it, the window is closed.

Or, tell me how to do it programmatically, I will be very grateful

This problem has been around for who knows how long.

Hey @zippa71,

thanks for your report.

Still this isn’t a bug but a feature request – which already exists as you correctly noticed.

You can probably use some custom CSS to achieve what you want for now:

div[data-popup-id="516"] {
    pointer-events: none;
}

div[data-popup-id="516"] .brx-popup-content {
    pointer-events: auto;
}

1 Like