Created
July 25, 2018 12:44
-
-
Save kmagiera/b5efc363fdbecc725311017e04efbbc4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AppState.addEventListener('change', nextAppState => { | |
if (nextAppState === 'active') { | |
this.interval = setInterval(this.refresh, 1000); | |
} else { | |
clearInterval(this.interval); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment