Skip to content

Instantly share code, notes, and snippets.

@jgarber
Created March 7, 2012 13:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jgarber/1993171 to your computer and use it in GitHub Desktop.
Save jgarber/1993171 to your computer and use it in GitHub Desktop.
Remove default field sizes in Rails 3.2.2
class ActionView::Helpers::InstanceTag
DEFAULT_FIELD_OPTIONS.delete("size")
DEFAULT_TEXT_AREA_OPTIONS.delete("rows")
DEFAULT_TEXT_AREA_OPTIONS.delete("cols")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment