class Voom::Presenters::DSL::Components::Checkbox
Attributes
indeterminate[RW]
Public Class Methods
new(**attribs_, &block)
click to toggle source
Calls superclass method
# File lib/voom/presenters/dsl/components/checkbox.rb, line 8 def initialize(**attribs_, &block) super(type: :checkbox, **attribs_, &block) @indeterminate = attribs.delete(:indeterminate) { false } expand! end