Created
January 6, 2009 21:14
-
-
Save HamptonMakes/43997 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def guess_content_type | |
ua = request.user_agent | |
if ua.include? "WebKit" | |
if ua.include?("iPhone") && !ua.include?("Safari") | |
:webkit_native | |
else | |
:webkit | |
end | |
else | |
:html | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment