fixed account tab underline when resize window

pull/2/merge
Szymon Lesisz 6 years ago
parent d6349356c8
commit 34d3e885b8

@ -22,10 +22,21 @@ class Indicator extends Component {
left: 0 left: 0
}, },
} }
this.reposition = this.reposition.bind(this);
}
handleResize() {
this.reposition();
} }
componentDidMount() { componentDidMount() {
this.reposition(); this.reposition();
window.addEventListener('resize', this.reposition, false);
}
componentWillUnmount() {
window.removeEventListener('resize', this.reposition, false);
} }
componentDidUpdate(newProps: any) { componentDidUpdate(newProps: any) {
@ -47,7 +58,6 @@ class Indicator extends Component {
} }
}) })
} }
} }
render() { render() {

Loading…
Cancel
Save