File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-overlays" ,
3
- "version" : " 0.50.0-alpha3 " ,
3
+ "version" : " 0.50.0-alpha4 " ,
4
4
"description" : " Utilities for creating robust overlay components" ,
5
5
"author" :
" Jason Quense <[email protected] >" ,
6
6
"repository" : " react-bootstrap/react-overlays" ,
75
75
"node-libs-browser" : " ^0.5.2" ,
76
76
"raw-loader" : " ^0.5.1" ,
77
77
"react" : " ^0.14.0-beta3" ,
78
- "react-bootstrap" : " ^ 0.24.5-react-pre.0" ,
78
+ "react-bootstrap" : " 0.24.5-react-pre.0" ,
79
79
"react-component-metadata" : " ^1.2.2" ,
80
80
"react-dom" : " ^0.14.0-beta3" ,
81
81
"react-hot-loader" : " ^1.2.7" ,
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export default class RootCloseWrapper extends React.Component {
33
33
let { id, suppressRootClose } = getSuppressRootClose ( ) ;
34
34
35
35
this . _suppressRootId = id ;
36
- this . _suppressRootClosehHandler = suppressRootClose ;
36
+ this . _suppressRootCloseHandler = suppressRootClose ;
37
37
}
38
38
39
39
bindRootCloseHandlers ( ) {
@@ -81,14 +81,14 @@ export default class RootCloseWrapper extends React.Component {
81
81
82
82
if ( noWrap ) {
83
83
return React . cloneElement ( child , {
84
- onClick : createChainedFunction ( this . _suppressRootClosehHandler , child . props . onClick )
84
+ onClick : createChainedFunction ( this . _suppressRootCloseHandler , child . props . onClick )
85
85
} ) ;
86
86
}
87
87
88
88
// Wrap the child in a new element, so the child won't have to handle
89
89
// potentially combining multiple onClick listeners.
90
90
return (
91
- < div onClick = { this . _suppressRootClosehHandler } >
91
+ < div onClick = { this . _suppressRootCloseHandler } >
92
92
{ child }
93
93
</ div >
94
94
) ;
You can’t perform that action at this time.
0 commit comments