Skip to content

Commit b64ed11

Browse files
committed
[fixed] Put onClick on correct element on NavItem
1 parent 44182b7 commit b64ed11

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/NavItem.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
import React from 'react';
21
import classNames from 'classnames';
2+
import React from 'react';
3+
34
import BootstrapMixin from './BootstrapMixin';
45
import SafeAnchor from './SafeAnchor';
6+
import createChainedFunction from './utils/createChainedFunction';
57

68
const NavItem = React.createClass({
79
mixins: [BootstrapMixin],
@@ -12,6 +14,7 @@ const NavItem = React.createClass({
1214
active: React.PropTypes.bool,
1315
disabled: React.PropTypes.bool,
1416
href: React.PropTypes.string,
17+
onClick: React.PropTypes.func,
1518
role: React.PropTypes.string,
1619
title: React.PropTypes.node,
1720
eventKey: React.PropTypes.any,
@@ -33,6 +36,7 @@ const NavItem = React.createClass({
3336
disabled,
3437
active,
3538
href,
39+
onClick,
3640
title,
3741
target,
3842
children,
@@ -46,11 +50,11 @@ const NavItem = React.createClass({
4650
let linkProps = {
4751
role,
4852
href,
53+
onClick: createChainedFunction(onClick, this.handleClick),
4954
title,
5055
target,
5156
tabIndex,
52-
id: linkId,
53-
onClick: this.handleClick
57+
id: linkId
5458
};
5559

5660
if (!role && href === '#') {

0 commit comments

Comments
 (0)