Better perf when window is hidden

This commit is contained in:
futpib 2018-12-04 15:12:41 +03:00
parent 08fa57caed
commit 34c404cf6c

View File

@ -71,6 +71,9 @@ class Peaks extends React.Component {
}
get targetDelay() {
if (window.document.hidden) {
return 2 * 1000;
}
if (this.props.accommodateGraphAnimation) {
return 1000 / 70;
}