Skip to content

Commit

Permalink
hide inactive ripple div
Browse files Browse the repository at this point in the history
  • Loading branch information
cncolder committed May 2, 2017
1 parent 5b4361b commit 0b53eac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/list/ListItem.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ListItem extends React.Component<ListItemProps, any> {
constructor(props) {
super(props);
this.state = {
coverRippleStyle: {},
coverRippleStyle: { display: 'none' },
RippleClicked: false,
};
}
Expand Down Expand Up @@ -65,7 +65,7 @@ class ListItem extends React.Component<ListItemProps, any> {
}, () => {
this.debounceTimeout = setTimeout(() => {
this.setState({
coverRippleStyle: {},
coverRippleStyle: { display: 'none' },
RippleClicked: false,
});
}, 1000);
Expand Down

0 comments on commit 0b53eac

Please sign in to comment.