lib/voom/presenters/dsl/components/checkbox.rb in voom-presenters-0.1.7 vs lib/voom/presenters/dsl/components/checkbox.rb in voom-presenters-0.1.8
- old
+ new
@@ -3,11 +3,12 @@
module Voom
module Presenters
module DSL
module Components
class Checkbox < ToggleBase
+
def initialize(**attribs_, &block)
- super(type: :checkbox, **attribs_, &block)
+ super(type: :checkbox, **attribs_, &block)
expand!
end
end
end
end