The URL for the embeddable module
the id of the iframe in which to load the module, must be present in the document when
load()
is called
Loads the module into the given iframe and sets up messaging between the frame and the parent window.
A promise that is resolved when the module is loaded into the frame.
Emit's an event into the module. Only use this if there is no dedicated method for the action you are taking.
For example, prefer module.authenticate(...)
on module.emit('authenticate', ...)
Must be one of MessageBusEvents
Sets up a listener for events coming from the module.
Must be one of MessageBusEvents
See MessageBusEvents
This method can be used to pass auth tokens directly to the module to bypass the login screen for a user.
You must hit the login API on your own to exchange username/password credentials for user auth tokens which can then be passed here.
See web/embed for more detailed examples.
This method can be used to pass a config object directly to the module
Generally it should be used in the
Unloads the module and remove message listeners.
Generated using TypeDoc
This module exposes utilities that can be used to embed individual Aiera modules into another web application via iframe.
Exposed into the global context as
window.Aiera.Module
.