Event Author API

render:activity

Fires after an Activity has finished rendering.

You would want to be notified about this event firing, because you might want to take some action when the Activity information has loaded and rendered, for example.

Examples

authorApp.on('render:activity', function (event) {
    console.log('This code executes when the Activity has rendered.');
});

Related articles

  • The open:activity event, which fires when an Activity is selected from the Activity list.
Was this article helpful?