Readonly
space:infoFired when information about the space in which the application is running changes.
Available since 1.1.0
app.onReady().then(() => {
app.listen()
.then(() => {
app.on("space:infoChanged", (space) => {
console.log("Space information changed. New space info:", space);
})
})
.catch((reason) => {
console.error("listen: fail reason=" + webex.Application.ErrorCodes[reason]);
});
});
Holds space information obtained from app.context.getSpace()
Webex Embedded Apps Space instance.
Example