bitmovin-player-ui
Version:
Bitmovin Player UI Framework
46 lines (45 loc) • 1.77 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.CloseButton = void 0;
var Button_1 = require("./Button");
var i18n_1 = require("../../localization/i18n");
/**
* A button that closes (hides) a configured component.
*
* @category Buttons
*/
var CloseButton = /** @class */ (function (_super) {
__extends(CloseButton, _super);
function CloseButton(config) {
var _this = _super.call(this, config) || this;
_this.config = _this.mergeConfig(config, {
cssClass: 'ui-closebutton',
text: i18n_1.i18n.getLocalizer('close'),
}, _this.config);
return _this;
}
CloseButton.prototype.configure = function (player, uimanager) {
_super.prototype.configure.call(this, player, uimanager);
var config = this.getConfig();
this.onClick.subscribe(function () {
config.target.hide();
});
};
return CloseButton;
}(Button_1.Button));
exports.CloseButton = CloseButton;