diff options
| author | Luc Donnet | 2015-05-22 08:50:22 +0200 |
|---|---|---|
| committer | Luc Donnet | 2015-05-22 08:50:22 +0200 |
| commit | 5d4413c208f7e0fcb86a2c4e464025c5ab37d159 (patch) | |
| tree | 0cf856645fe6a509346a2afb711d70f93d46fd68 /app/inputs | |
| parent | 12f0d822d218b43fada191a9390a80aa77742ebe (diff) | |
| download | chouette-core-5d4413c208f7e0fcb86a2c4e464025c5ab37d159.tar.bz2 | |
Revert label boolean css and formtastic input
Diffstat (limited to 'app/inputs')
| -rw-r--r-- | app/inputs/boolean_input.rb | 14 | ||||
| -rw-r--r-- | app/inputs/custom_simple_form/boolean_input.rb | 4 |
2 files changed, 11 insertions, 7 deletions
diff --git a/app/inputs/boolean_input.rb b/app/inputs/boolean_input.rb index a2b9b92ca..da23c3b93 100644 --- a/app/inputs/boolean_input.rb +++ b/app/inputs/boolean_input.rb @@ -1,9 +1,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 + # def label_with_nested_checkbox + # builder.label( + # method, + # label_text, + # label_html_options.merge(class: "label") + # ) << "" << check_box_html + # end end diff --git a/app/inputs/custom_simple_form/boolean_input.rb b/app/inputs/custom_simple_form/boolean_input.rb new file mode 100644 index 000000000..1dd456356 --- /dev/null +++ b/app/inputs/custom_simple_form/boolean_input.rb @@ -0,0 +1,4 @@ +module CustomSimpleForm + class BooleanInput < SimpleForm::Inputs::BooleanInput + end +end |
