Module: UIControlWrap
- Defined in:
- motion/ui/ui_control.rb
Instance Method Summary (collapse)
Instance Method Details
- (Object) when(events, &block)
2 3 4 5 6 |
# File 'motion/ui/ui_control.rb', line 2 def when(events, &block) @callback ||= {} @callback[events] = block addTarget(@callback[events], action:'call', forControlEvents: events) end |