Skip to content

Commit

Permalink
Use correct classes
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnrusschen committed Jan 28, 2015
1 parent a864aaf commit 20edc65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion react-datepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ var Popover = React.createClass({

componentWillMount: function() {
popoverContainer = document.createElement('span');
popoverContainer.className = 'datepicker-container';
popoverContainer.className = 'datepicker__container';

this._popoverElement = popoverContainer;

Expand Down
2 changes: 1 addition & 1 deletion src/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var Popover = React.createClass({

componentWillMount: function() {
popoverContainer = document.createElement('span');
popoverContainer.className = 'datepicker-container';
popoverContainer.className = 'datepicker__container';

this._popoverElement = popoverContainer;

Expand Down

0 comments on commit 20edc65

Please sign in to comment.