Skip to content

Instantly share code, notes, and snippets.

@DemitryT
Created November 2, 2012 20:57
Show Gist options
  • Save DemitryT/4004250 to your computer and use it in GitHub Desktop.
Save DemitryT/4004250 to your computer and use it in GitHub Desktop.
test.rb
def is_mobile_device?
if current_company
current_company.mobile_optimized? && !session[:full_site].present? && super || session[:mobile_view].present?
else
!session[:full_site].present? && super || session[:mobile_view].present?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment