Skip to content

Commit

Permalink
Removed comment in application_helper.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aquaj committed Oct 23, 2018
1 parent 6dfb0e1 commit ebaa75d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/helpers/application_helper.rb
Expand Up @@ -69,7 +69,6 @@ def radio_yes_no(name, value = nil)
end

def radio_check_box(object_name, method, _options = {}, checked_value = '1', unchecked_value = '0')
# raise StandardError.new eval("@#{object_name}.#{method}").inspect
radio_button_tag(object_name, method, TrueClass, id: "#{object_name}_#{method}_#{checked_value}") << ' ' <<
content_tag(:label, ::I18n.translate('general.y'), for: "#{object_name}_#{method}_#{checked_value}") << ' ' <<
radio_button_tag(object_name, method, FalseClass, id: "#{object_name}_#{method}_#{unchecked_value}") << ' ' <<
Expand Down

0 comments on commit ebaa75d

Please sign in to comment.