You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got stuck when I tried to alter session[:mobile_view] to switch between html page and mobile page, hence I changed the method is_mobile_device? a bit like below:
def is_mobile_device?
if session[:mobile_view]
session[:mobile_view] == 'true'
else
request.user_agent.to_s.downcase =~ Regexp.new(ActionController::MobileFu::MOBILE_USER_AGENTS)
end
end
Is this modification safe? Are there any better solution for this? Thanks!
@benlangfeld, seems you are active on creating the gem, could you kindly comment? Thanks.
The text was updated successfully, but these errors were encountered:
It seems you have prepared this patch against this repository, which is significantly out of date. You should check out my fork for the version published as a gem. The existing method is this:
This project is abandoned. Please see the active fork at http://github.com/benlangfeld/mobile-fu. Please test with the released gem and master branch of the new home for the project, and file an issue on the other repo if you still have problems.
Dear all,
I got stuck when I tried to alter session[:mobile_view] to switch between html page and mobile page, hence I changed the method is_mobile_device? a bit like below:
Is this modification safe? Are there any better solution for this? Thanks!
@benlangfeld, seems you are active on creating the gem, could you kindly comment? Thanks.
The text was updated successfully, but these errors were encountered: