We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d0d14 commit 61d5b46Copy full SHA for 61d5b46
src/popover.jsx
@@ -11,9 +11,9 @@ var Popover = React.createClass( {
11
12
getDefaultProps: function() {
13
return {
14
- attachment: 'top left',
15
- targetAttachment: 'bottom left',
16
- targetOffset: '10px 0'
+ attachment: "top left",
+ targetAttachment: "bottom left",
+ targetOffset: "10px 0"
17
};
18
},
19
@@ -46,7 +46,7 @@ var Popover = React.createClass( {
46
_tetherOptions: function() {
47
48
element: this._popoverElement,
49
- target: this.getDOMNode().parentElement.querySelector('input'),
+ target: this.getDOMNode().parentElement.querySelector( "input" ),
50
attachment: this.props.attachment,
51
targetAttachment: this.props.targetAttachment,
52
targetOffset: this.props.targetOffset,
0 commit comments