bitmovin-player-ui
Version:
Bitmovin Player UI Framework
46 lines (45 loc) • 1.8 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.HugeReplayButton = void 0;
var Button_1 = require("./Button");
var i18n_1 = require("../../localization/i18n");
/**
* A button to play/replay a video.
*
* @category Buttons
*/
var HugeReplayButton = /** @class */ (function (_super) {
__extends(HugeReplayButton, _super);
function HugeReplayButton(config) {
if (config === void 0) { config = {}; }
var _this = _super.call(this, config) || this;
_this.config = _this.mergeConfig(config, {
cssClass: 'ui-hugereplaybutton',
text: i18n_1.i18n.getLocalizer('replay'),
}, _this.config);
return _this;
}
HugeReplayButton.prototype.configure = function (player, uimanager) {
_super.prototype.configure.call(this, player, uimanager);
this.onClick.subscribe(function () {
player.play('ui');
});
};
return HugeReplayButton;
}(Button_1.Button));
exports.HugeReplayButton = HugeReplayButton;