Skip to content

Commit

Permalink
One more alphabetically ordered
Browse files Browse the repository at this point in the history
  • Loading branch information
yuri-sakharov committed Dec 19, 2017
1 parent 8a5689f commit bb8e7b0
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -1085,14 +1085,15 @@ class Select extends React.Component {

return (
<div ref={ref => this.menuContainer = ref} className="Select-menu-outer" style={this.props.menuContainerStyle}>
<div ref={ref => this.menu = ref}
className="Select-menu"
id={this._instancePrefix + '-list'}
onMouseDown={this.handleMouseDownOnMenu}
onScroll={this.handleMenuScroll}
role="listbox"
style={this.props.menuStyle}
tabIndex={-1}
<div
className="Select-menu"
id={this._instancePrefix + '-list'}
onMouseDown={this.handleMouseDownOnMenu}
onScroll={this.handleMenuScroll}
ref={ref => this.menu = ref}
role="listbox"
style={this.props.menuStyle}
tabIndex={-1}
>
{menu}
</div>
Expand Down

0 comments on commit bb8e7b0

Please sign in to comment.