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.
22 lines • 764 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.actionsBar = void 0;
var enums_1 = require("./enums");
exports.actionsBar = {
/**
* Decides whether to display the actions bar
*
* @param arg object containing the `displayActionBar` which is a boolean
* level.
* Refer to {@link SetDisplayActionBarCommandArguments} to understand the argument structure.
*/
setDisplayActionBar: function (arg) {
var displayActionBar = arg.displayActionBar;
window.dispatchEvent(new CustomEvent(enums_1.ActionsBarEnum.SET_DISPLAY_ACTIONS_BAR, {
detail: {
displayActionBar: displayActionBar,
},
}));
},
};
//# sourceMappingURL=commands.js.map