wwan5803 / react-modal-resizable-draggable

53 stars 22 forks source link

Property for on out focus click for not close Modal #29

Open BhavikModi opened 4 years ago

BhavikModi commented 4 years ago

Is there any functionality that Modal does not close on out side click?

wwan5803 commented 4 years ago

It doesn't support it currently, can add this feature later or you can simply send a pull request

Bonnev commented 2 years ago

Isn't this already supported via the onRequestClose field?

<ReactModal
...
    onRequestClose={() => setOpen(false)}
>
...
</ReactModal>