Skip to content

Instantly share code, notes, and snippets.

@wethu
Created April 14, 2014 15:53
Show Gist options
  • Select an option

  • Save wethu/10660331 to your computer and use it in GitHub Desktop.

Select an option

Save wethu/10660331 to your computer and use it in GitHub Desktop.
module JobsHelper
def other_field_for name, field, values
radio_button_tag name, values.include?(field) ? nil : field, checked_special(field, values), class: "radio-other"
content_tag :label do
content_tag :input, nil, type: "text", class: "size-other", value: values.include?(field) ? nil : field
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment