Skip to content

Instantly share code, notes, and snippets.

@tomjadams
Created March 26, 2009 23:15
Show Gist options
  • Save tomjadams/86439 to your computer and use it in GitHub Desktop.
Save tomjadams/86439 to your computer and use it in GitHub Desktop.
module UserAgentHelper
def on_iphone_like_device?
request && (request.user_agent =~ /iPhone/ || request.user_agent =~ /iPod.*AppleWebKit.*Mobile.*Safari/)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment