mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-15 17:50:48 +02:00
JSXhint on buildserver
This commit is contained in:
parent
e638f4cf00
commit
3c57c50912
@ -28,9 +28,11 @@ var TabView = React.createClass({
|
||||
render: function() {
|
||||
var tabNodes = this.props.tabPanes.map(function (tabPane) {
|
||||
return (
|
||||
<li key={tabPane.name} className={tabPane.name === this.state.activeTab.name ? "active": ""}>
|
||||
<li key={tabPane.name} className=
|
||||
{tabPane.name === this.state.activeTab.name ? "active": ""}>
|
||||
<a href={"#" + tabPane.slug}
|
||||
onClick={this.onChangeTab.bind(this, tabPane)}>{tabPane.name}
|
||||
onClick={this.onChangeTab.bind(this, tabPane)}>
|
||||
{tabPane.name}
|
||||
</a>
|
||||
</li>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user