Skip to content

Instantly share code, notes, and snippets.

View azinazadi's full-sized avatar

Azin Azadi azinazadi

View GitHub Profile
@azinazadi
azinazadi / fui_boolean_input.rb
Created February 23, 2014 10:54
flat ui checkbox helper for simple_form. use :as => :fui_boolean
class FuiBooleanInput < SimpleForm::Inputs::BooleanInput
self.default_options = {:input_html => {'data-toggle' => "checkbox"}, :inline_label => true, :label => false}
def nested_boolean_style?
true
end
end