Skip to content

Commit

Permalink
Fix quotes and spacing that were causing linting to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
truckingsim committed Aug 11, 2015
1 parent 66d0d14 commit 61d5b46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/popover.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ var Popover = React.createClass( {

getDefaultProps: function() {
return {
attachment: 'top left',
targetAttachment: 'bottom left',
targetOffset: '10px 0'
attachment: "top left",
targetAttachment: "bottom left",
targetOffset: "10px 0"
};
},

Expand Down Expand Up @@ -46,7 +46,7 @@ var Popover = React.createClass( {
_tetherOptions: function() {
return {
element: this._popoverElement,
target: this.getDOMNode().parentElement.querySelector('input'),
target: this.getDOMNode().parentElement.querySelector( "input" ),
attachment: this.props.attachment,
targetAttachment: this.props.targetAttachment,
targetOffset: this.props.targetOffset,
Expand Down

0 comments on commit 61d5b46

Please sign in to comment.