Method: Event#kill!

Defined in:
lib/source/redshift/event.rb

#kill!Object

call-seq:

evnt.kill! -> evnt

Stops the event in place, preventing the default action as well as any further propagation, then returns evnt.



180
181
182
# File 'lib/source/redshift/event.rb', line 180

def kill!
  self.stop_propagation.prevent_default
end