Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 17 Next »

AddEventListener

addEventListener() is a common BrightSign method that is used to listen for an event.

Syntax:

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 specified type) happens 


RemoveEventListener

removeEventListener()is a common BrightSign method that is used to remove an event listener.

Syntax:

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 specified type)happens 


Reserved Methods:

The following methods are reserved for BrightSign use only:

checkPassword()

getDigestHash()

toJSON()



  • No labels