Description Usage Arguments Details Value Author(s) Examples
View source: R/event.registry.R
Remove an Event entirely
1 | remove.event(registry, event)
|
registry |
EventRegistry |
event |
String. Name of the Event to remove |
Remove an Event entirely from the EventRegistry. Contrast with clear.event.handlers
,
which only removes the handlers for that event.
Nothing good.
Brad Friedman
1 2 3 4 5 | r <- new.event.registry()
add.event(r, "mouseclick")
has.event(r, "mouseclick")
remove.event(r, "mouseclick")
has.event(r, "mouseclick")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.