1
- import React from 'react' ;
2
1
import classNames from 'classnames' ;
2
+ import React from 'react' ;
3
+
3
4
import BootstrapMixin from './BootstrapMixin' ;
4
5
import SafeAnchor from './SafeAnchor' ;
6
+ import createChainedFunction from './utils/createChainedFunction' ;
5
7
6
8
const NavItem = React . createClass ( {
7
9
mixins : [ BootstrapMixin ] ,
@@ -12,6 +14,7 @@ const NavItem = React.createClass({
12
14
active : React . PropTypes . bool ,
13
15
disabled : React . PropTypes . bool ,
14
16
href : React . PropTypes . string ,
17
+ onClick : React . PropTypes . func ,
15
18
role : React . PropTypes . string ,
16
19
title : React . PropTypes . node ,
17
20
eventKey : React . PropTypes . any ,
@@ -33,6 +36,7 @@ const NavItem = React.createClass({
33
36
disabled,
34
37
active,
35
38
href,
39
+ onClick,
36
40
title,
37
41
target,
38
42
children,
@@ -46,11 +50,11 @@ const NavItem = React.createClass({
46
50
let linkProps = {
47
51
role,
48
52
href,
53
+ onClick : createChainedFunction ( onClick , this . handleClick ) ,
49
54
title,
50
55
target,
51
56
tabIndex,
52
- id : linkId ,
53
- onClick : this . handleClick
57
+ id : linkId
54
58
} ;
55
59
56
60
if ( ! role && href === '#' ) {
0 commit comments