Module: Kernel
- Defined in:
- lib/opal/jquery/kernel.rb
Overview
backtick_javascript: true
Instance Method Summary collapse
-
#alert(msg) ⇒ nil
Alert the given message using
window.alert()
.
Instance Method Details
#alert(msg) ⇒ nil
Alert the given message using window.alert()
. This is a blocking
method.
9 10 11 12 |
# File 'lib/opal/jquery/kernel.rb', line 9 def alert(msg) `alert(msg)` nil end |