Created
April 14, 2014 15:53
-
-
Save wethu/10660331 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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