Skip to content

Instantly share code, notes, and snippets.

@drawcode
Created January 25, 2013 05:34
Show Gist options
  • Select an option

  • Save drawcode/4632023 to your computer and use it in GitHub Desktop.

Select an option

Save drawcode/4632023 to your computer and use it in GitHub Desktop.
Check if app installed and redirect to download.
function startiThrown() {
document.location = appurl;
var time = (new Date()).getTime();
setTimeout(function(){
var now = (new Date()).getTime();
if((now-time)<400) {
if(confirm('You do not seem to have iThrown installed, do you want to go download it now?')){
document.location = 'http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293049283&mt=8&uo=6';
}
}
}, 300);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment