AddEventListener
addEventListener()
is a common BrightSign method that is used to listen for an event.
Syntax:
Code Block | ||
---|---|---|
| ||
target.addEventListener(type, listener); |
[string] type:
Specifies the type of event to listen for[function] listener:
The object to be notified when the event (of the specifiedtype)
happens
RemoveEventListener
removeEventListener()
is a common BrightSign method that is used to remove an event listener.
Syntax:
Code Block | ||
---|---|---|
| ||
target.removeEventListener(type, listener); |
[string] type:
Specifies the type of event to listen for[function] listener:
The object to be notified when the event (of the specifiedtype)
happens
Reserved Methods:
The following methods are reserved for BrightSign use only:
checkPassword()
getDigestHash()
toJSON()