Skip to content

Instantly share code, notes, and snippets.

@jonpaul
Created March 5, 2012 14:22
Show Gist options
  • Save jonpaul/1978510 to your computer and use it in GitHub Desktop.
Save jonpaul/1978510 to your computer and use it in GitHub Desktop.
monkeypatched devisery
class Devise::PasswordsController < DeviseController
before_filter :mobile_layout
private
def mobile_layout
request.format = :mobile if android_device?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment