This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Public Method Assess API

off()

Removes a previously-bound callback function for an event.

When called with no parameters, callbacks for all events are removed.

Examples

//Removes callbacks for the 'focused' event.
assessApp.off("focused");
//Removes callbacks for all events.
assessApp.off();

Arguments

  • event_name string
    Name of the event that you want to stop listening to.
  • event_callback function
    If no callback is provided, all callbacks for the event_name will be removed.
  • context object
    If no context is provided, all callbacks for the event_name, event_callback combination will be removed.

Return value

None (undefined).

Related articles

Was this article helpful?