Skip to content

Instantly share code, notes, and snippets.

@asus4
Created March 21, 2016 19:24
Show Gist options
  • Save asus4/b531529a666b3ef284e2 to your computer and use it in GitHub Desktop.
Save asus4/b531529a666b3ef284e2 to your computer and use it in GitHub Desktop.
ブラウザが、facebookか、twitterアプリのwebviewで開かれたか判定!
checkSocialWebview = ()->
if document.referrer
if /m.facebook.com/.test(document.referrer)
return 'facebook'
if /t.co./.test(document.referrer)
return 'twitter'
return ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment