A hook event that fires whenever an Application is rendered. Substitute the
Application name in the hook event to target a specific Application type, for example "renderMyApplication".
Each Application class in the inheritance chain will also fire this hook, i.e. "renderApplication" will also fire.
The hook provides the pending application HTML which will be added to the DOM.
Hooked functions may modify that HTML or attach interactive listeners to it.
renderApplication
Parameters
application: Application
The Application instance being rendered
html: jQuery
The inner HTML of the document that will be displayed and may be modified
data: object
The object of data used when rendering the application
A hook event that fires whenever an Application is rendered. Substitute the Application name in the hook event to target a specific Application type, for example "renderMyApplication". Each Application class in the inheritance chain will also fire this hook, i.e. "renderApplication" will also fire. The hook provides the pending application HTML which will be added to the DOM. Hooked functions may modify that HTML or attach interactive listeners to it.
renderApplication