class Shul::Shule::Textbox
Public Class Methods
new(name='textbox', attributes: nil, rexle: nil)
click to toggle source
Calls superclass method
Shul::Shule::Box::new
# File lib/shul.rb, line 230 def initialize(name='textbox', attributes: nil, rexle: nil) h = {value: '', size: '40'} h.merge!(attributes) if attributes super(name, attributes: h, rexle: rexle) end