Skip to content

Commit

Permalink
Update JavaScript.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sjmcpherson committed Jul 8, 2015
1 parent d7185b4 commit 4a0b56f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JavaScript.md
Expand Up @@ -540,7 +540,7 @@ PrefixedEvent(anim, "AnimationStart", AnimationListener);
- Web Workers - An API for defining background scripts to run concurrently from the main thread handling user interactions. IE10+ See http://www.html5rocks.com/en/tutorials/workers/basics/
- WebSockets - Allows the browser to open 2 way communication with the server this allows real time communication rather than relying on polling. (More Info https://developer.mozilla.org/en-US/docs/WebSockets/Writing_WebSocket_client_applications)
- Server Side Events(SSEs) -
- Page Visibility - Using document.hidden and/or document.visibilityState you can determine whether the page is in the active tab of the browser and whether the browser window is minified or not
- Page Visibility - Using document.hidden and/or document.visibilityState you can determine whether the page is in the active tab of the browser and whether the browser window is minified or not. IE10+
```javascript
function handleVisibilityChange() {
Expand Down

0 comments on commit 4a0b56f

Please sign in to comment.