class IntegerInput
Public Instance Methods
parse(val)
click to toggle source
# File lib/bull/ui_core.rb, line 249 def parse val begin Integer(val) rescue nil end end
update_state(event)
click to toggle source
# File lib/bull/ui_core.rb, line 257 def update_state event params.on_change parse(event.target.value) end