FEATURE: Load fewer topics in the topic list on slow platforms (Android)

This commit is contained in:
Robin Ward
2014-12-15 11:54:26 -05:00
parent a014507da4
commit b1bc4741b1
9 changed files with 29 additions and 11 deletions

View File

@ -51,6 +51,10 @@ class ApplicationController < ActionController::Base
@use_crawler_layout ||= (has_escaped_fragment? || CrawlerDetection.crawler?(request.user_agent))
end
def slow_platform?
request.user_agent =~ /Android/
end
def set_layout
use_crawler_layout? ? 'crawler' : 'application'
end