Method: Proc#after!

Defined in:
opal/browser/delay.rb

#after!(time) ⇒ Delay

Execute a block after the given seconds, you have to call [#start] on it yourself.

Parameters:

  • time (Float)

    the seconds after it gets called

Returns:

  • (Delay)

    the object representing the timeout


92
93
94
# File 'opal/browser/delay.rb', line 92

def after!(time)
  $window.after!(time, &self)
end