Skip to content

Instantly share code, notes, and snippets.

@fabriziogiordano
Created January 13, 2012 01:52
Show Gist options
  • Save fabriziogiordano/1604211 to your computer and use it in GitHub Desktop.
Save fabriziogiordano/1604211 to your computer and use it in GitHub Desktop.
Check iOS open from icon and send event to Google Analytics
if ('standalone' in navigator
&& navigator.standalone
&& (/iphone|ipod|ipad/gi).test(navigator.platform)
&& sessionStorage.standalone > 60*5*1000
// && !document.referrer //optional
){
sessionStorage.setItem('standalone', (new Date()).getTime());
_gaq.push(['_trackEvent', 'iOS', 'desktop', 'open']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment