Skip to content

Instantly share code, notes, and snippets.

@theptrk
Created July 4, 2018 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theptrk/42452a0b67d13276d612957e1603342b to your computer and use it in GitHub Desktop.
Save theptrk/42452a0b67d13276d612957e1603342b to your computer and use it in GitHub Desktop.
(function {
window.addEventListener('online', doSomething);
window.addEventListener('offline', doSomething);
})()
// @returns: String { "online", "offline" }
function doSomething() {
returns navigator.onLine;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment