Created
April 17, 2017 04:18
-
-
Save thangman22/3a00c5f0453177c806135f7f275ca969 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
let documentIsHidden = false; | |
document.addEventListener('visibilitychange', () => { | |
// เช็คว่า หน้านี้ถูกซ่อนหรือเปิดอยู่ ตอนที่มี event visibilitychange trigger มา | |
documentIsHidden = document.hidden; | |
}); | |
function update() { | |
if (!documentIsHidden) { | |
// Request server หรือ update ตามปกติถ้าเว็บเปิดอยู่ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment