FU
Asked
How can I prevent that the modal view be closed when I click outside the modal view area, because I lose what I'm doing, this is very annoying ..
https://prnt.sc/rtojas
https://prnt.sc/rtojas
- MSAnsweredYou can add the following code at the end of the `themes/default/admin/views/footer.php` before `</script>` around line no 62
```
$.fn.modal.prototype.constructor.Constructor.DEFAULTS.backdrop = 'static';
``` - Login to Reply