Show mobile view as default for nexus 7 tablet

This commit is contained in:
Neil Lalonde
2013-09-23 17:13:29 -07:00
parent 500a24ebf9
commit 07d08b81c7
2 changed files with 8 additions and 3 deletions

View File

@ -119,6 +119,6 @@ module ApplicationHelper
def mobile_device?
# TODO: this is dumb. user agent matching is a doomed approach. a better solution is coming.
request.user_agent =~ /Mobile|webOS/ and !(request.user_agent =~ /iPad/)
request.user_agent =~ /Mobile|webOS|Nexus 7/ and !(request.user_agent =~ /iPad/)
end
end