Skip to content

Commit

Permalink
[Popover] Revert the latest PR following a regression (#5797)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Dec 16, 2016
1 parent d97ebad commit 7481f1e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Popover/Popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ import throttle from 'lodash.throttle';
import PopoverAnimationDefault from './PopoverAnimationDefault';
import {isIOS, getOffsetTop} from '../utils/iOSHelpers';

const styles = {
root: {
display: 'none',
},
};

class Popover extends Component {
static propTypes = {
/**
Expand Down Expand Up @@ -391,7 +397,7 @@ class Popover extends Component {

render() {
return (
<div>
<div style={styles.root}>
<EventListener
target="window"
onScroll={this.handleScroll}
Expand Down

0 comments on commit 7481f1e

Please sign in to comment.