Skip to content

Commit 678108f

Browse files
committed
alpha4
1 parent be3a5b6 commit 678108f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-overlays",
3-
"version": "0.50.0-alpha3",
3+
"version": "0.50.0-alpha4",
44
"description": "Utilities for creating robust overlay components",
55
"author": "Jason Quense <[email protected]>",
66
"repository": "react-bootstrap/react-overlays",
@@ -75,7 +75,7 @@
7575
"node-libs-browser": "^0.5.2",
7676
"raw-loader": "^0.5.1",
7777
"react": "^0.14.0-beta3",
78-
"react-bootstrap": "^0.24.5-react-pre.0",
78+
"react-bootstrap": "0.24.5-react-pre.0",
7979
"react-component-metadata": "^1.2.2",
8080
"react-dom": "^0.14.0-beta3",
8181
"react-hot-loader": "^1.2.7",

src/RootCloseWrapper.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default class RootCloseWrapper extends React.Component {
3333
let { id, suppressRootClose } = getSuppressRootClose();
3434

3535
this._suppressRootId = id;
36-
this._suppressRootClosehHandler = suppressRootClose;
36+
this._suppressRootCloseHandler = suppressRootClose;
3737
}
3838

3939
bindRootCloseHandlers() {
@@ -81,14 +81,14 @@ export default class RootCloseWrapper extends React.Component {
8181

8282
if (noWrap) {
8383
return React.cloneElement(child, {
84-
onClick: createChainedFunction(this._suppressRootClosehHandler, child.props.onClick)
84+
onClick: createChainedFunction(this._suppressRootCloseHandler, child.props.onClick)
8585
});
8686
}
8787

8888
// Wrap the child in a new element, so the child won't have to handle
8989
// potentially combining multiple onClick listeners.
9090
return (
91-
<div onClick={this._suppressRootClosehHandler}>
91+
<div onClick={this._suppressRootCloseHandler}>
9292
{child}
9393
</div>
9494
);

0 commit comments

Comments
 (0)