Skip to content

Instantly share code, notes, and snippets.

@fernandolopes
Created July 7, 2014 21:04
Show Gist options
  • Select an option

  • Save fernandolopes/bbd8fb6893fb6407e8fb to your computer and use it in GitHub Desktop.

Select an option

Save fernandolopes/bbd8fb6893fb6407e8fb to your computer and use it in GitHub Desktop.
<script>
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false );
var android = ( navigator.userAgent.match(/Android/i) ? true : false );
if (iOS) {
document.location = "https://itunes.apple.com/pt/app/pointsup/id880237921?mt=8";
};
if (android) {
document.location = "https://play.google.com/store/apps/details?id=br.com.pointsup.controller&hl=pt_BR";
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment