Skip to content

Commit 0be007f

Browse files
committed
[removed] Nav right prop in favor of pullRight
1 parent 5dbafd3 commit 0be007f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/Nav.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ class Nav extends React.Component {
1818
classes[tbsUtils.prefix(this.props, 'justified')] = this.props.justified;
1919

2020

21-
if (this.props.navbar) {
21+
if (isNavbar) {
2222
let bsClass = this.context.$bs_navbar_bsClass || 'navbar';
23+
const navbarRight = this.props.right != null ? this.props.right : this.props.pullRight;
2324

2425
classes[tbsUtils.prefix({ bsClass }, 'nav')] = true;
25-
classes[tbsUtils.prefix({ bsClass }, 'right')] = isNavbar;
26+
classes[tbsUtils.prefix({ bsClass }, 'right')] = navbarRight;
2627
} else {
2728
classes['pull-right'] = this.props.pullRight;
2829
}
@@ -119,7 +120,7 @@ Nav.propTypes = {
119120
navbar: React.PropTypes.bool,
120121
eventKey: React.PropTypes.any,
121122
pullRight: React.PropTypes.bool,
122-
right: React.PropTypes.bool
123+
right: deprecated(React.PropTypes.bool, 'Use the `pullRight` prop instead')
123124
};
124125

125126
Nav.contextTypes = {

test/NavbarSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ describe('Navbar', () => {
186186
expect(collapse.context.$bs_navbar_navExpanded).to.equal(true);
187187
});
188188

189-
it.only('Should wire the toggle to the collapse', () => {
189+
it('Should wire the toggle to the collapse', () => {
190190
let instance = ReactTestUtils.renderIntoDocument(
191191
<Navbar>
192192
<Navbar.Header>

0 commit comments

Comments
 (0)