Skip to content

Commit fd8d4d2

Browse files
committed
[fixed] regression when clicking "static" modal backdrops
Not sure where this fell to the floor, but clearly we have no tests around it (will get to that)
1 parent b64a7a3 commit fd8d4d2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Modal.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,14 @@ const Modal = React.createClass({
216216
let { animation, bsClass } = this.props;
217217
let duration = Modal.BACKDROP_TRANSITION_DURATION;
218218

219+
// Don't handle clicks for "static" backdrops
220+
let onClick = this.props.backdrop === true ?
221+
this.handleBackdropClick : null;
222+
219223
let backdrop = (
220224
<div ref="backdrop"
221225
className={classNames(`${bsClass}-backdrop`, { in: this.props.show && !animation })}
222-
onClick={this.handleBackdropClick}
226+
onClick={onClick}
223227
/>
224228
);
225229

0 commit comments

Comments
 (0)