module UserAgent::Browsers::All
def mobile?
def mobile? if browser == 'webOS' true elsif detect_product('Mobile') true elsif application.comment.detect { |k, v| k =~ /^IEMobile/ } true else false end end
def mobile? if browser == 'webOS' true elsif detect_product('Mobile') true elsif application.comment.detect { |k, v| k =~ /^IEMobile/ } true else false end end