Navigation






Search the wiki
»

PoweredBy
Specifies the author of a section of code

Example

/**
 * Represents the event that was fired.
 * @author Igor Francé
 * @param {Object} eventSource The element that is the source of the event.
 * @param {String} eventType The name of the event that was fired.
 * @param {Object} eventData Additional data to pass with the event.
 */
Aeon.Event = function Event(eventSource, eventType, eventData)
{
}

Description

To associate a part of the code with a specific author, you can use the @author token. As with other tokens, this token too can contain HTML markup so the author name can be a link.

See also

All tokens
@see
@link