File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -360,15 +360,14 @@ const Modal = React.createClass({
360
360
let current = domUtils . activeElement ( this ) ;
361
361
let focusInModal = current && domUtils . contains ( modalContent , current ) ;
362
362
363
- if ( this . props . autoFocus && ! focusInModal ) {
363
+ if ( modalContent && this . props . autoFocus && ! focusInModal ) {
364
364
this . lastFocus = current ;
365
-
366
365
modalContent . focus ( ) ;
367
366
}
368
367
} ,
369
368
370
369
restoreLastFocus ( ) {
371
- if ( this . lastFocus ) {
370
+ if ( this . lastFocus && this . lastFocus . focus ) {
372
371
this . lastFocus . focus ( ) ;
373
372
this . lastFocus = null ;
374
373
}
@@ -382,7 +381,7 @@ const Modal = React.createClass({
382
381
let active = domUtils . activeElement ( this ) ;
383
382
let modal = React . findDOMNode ( this . refs . dialog ) ;
384
383
385
- if ( modal !== active && ! domUtils . contains ( modal , active ) ) {
384
+ if ( modal && modal !== active && ! domUtils . contains ( modal , active ) ) {
386
385
modal . focus ( ) ;
387
386
}
388
387
} ,
You can’t perform that action at this time.
0 commit comments