Skip to content

Commit 61d5b46

Browse files
committed
Fix quotes and spacing that were causing linting to fail
1 parent 66d0d14 commit 61d5b46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/popover.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ var Popover = React.createClass( {
1111

1212
getDefaultProps: function() {
1313
return {
14-
attachment: 'top left',
15-
targetAttachment: 'bottom left',
16-
targetOffset: '10px 0'
14+
attachment: "top left",
15+
targetAttachment: "bottom left",
16+
targetOffset: "10px 0"
1717
};
1818
},
1919

@@ -46,7 +46,7 @@ var Popover = React.createClass( {
4646
_tetherOptions: function() {
4747
return {
4848
element: this._popoverElement,
49-
target: this.getDOMNode().parentElement.querySelector('input'),
49+
target: this.getDOMNode().parentElement.querySelector( "input" ),
5050
attachment: this.props.attachment,
5151
targetAttachment: this.props.targetAttachment,
5252
targetOffset: this.props.targetOffset,

0 commit comments

Comments
 (0)