Do not close raw html dialog when click out dialog
Closed this issue · 1 comments
vehuel commented
If I use raw html dialog, when I click out it, dialog closes.
I changed lines 257-259 from
if ( !o.forceInput ) {
self.close();
}
to
if ( !o.forceInput ) {
if ( o.mode !== 'blank' ) self.close();
}
and now it's ok to me.
Thank you.
jtsage commented
This is actually exactly what the forceInput configuration option was intended for.