Skip to content

Instantly share code, notes, and snippets.

@nabettu
Created September 16, 2015 05:36
Show Gist options
  • Save nabettu/48b332556c3ff681f1e5 to your computer and use it in GitHub Desktop.
Save nabettu/48b332556c3ff681f1e5 to your computer and use it in GitHub Desktop.
iOSのLine,Facebook,Twitterのアプリ内WebViewで開いてたらfalse! for browserify
module.exports = do ->
ua = window.navigator.userAgent.toUpperCase()
if (ua.match /IPOD/) or (ua.match /IPHONE/) or (ua.match /IPAD/)
if (ua.match /TWITTER/) or (ua.match /LINE/) or (ua.match /FBCR/)
return false
else
return true
else
return true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment