blob: a2b9b92ca2fdf8d46d2571b07941aaf594f8930b (
plain)
1
2
3
4
5
6
7
8
9
|
class BooleanInput < Formtastic::Inputs::BooleanInput
def label_with_nested_checkbox
builder.label(
method,
label_text,
label_html_options.merge(class: "label")
) << "" << check_box_html
end
end
|