bigbluebutton-html-plugin-sdk
Version:
This repository contains the SDK for developing BigBlueButton plugins. Plugins are React components that can be loaded from external sources by the BigBlueButton HTML5 client to extend its functionalities.
19 lines • 626 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sidekickOptionsContainer = void 0;
var enums_1 = require("./enums");
exports.sidekickOptionsContainer = {
/**
* Opens the sidekick container automatically.
*/
open: function () {
window.dispatchEvent(new Event(enums_1.SidekickOptionsContainerEnum.OPEN));
},
/**
* Closes the sidekick container (and sidebard content panel) automatically.
*/
close: function () {
window.dispatchEvent(new Event(enums_1.SidekickOptionsContainerEnum.CLOSE));
},
};
//# sourceMappingURL=commands.js.map