define(["require", "exports", "@syncfusion/ej2-base"], function (require, exports, ej2_base_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var RibbonGroupBase = (function () {
function RibbonGroupBase(container) {
this.container = container;
this.isRtl = this.container.enableRtl || false;
this.localObj = new ej2_base_1.L10n('documenteditorcontainer', this.container.defaultLocale, this.container.locale);
this.ribbonId = this.container.element.id + '_ribbon';
}
Object.defineProperty(RibbonGroupBase.prototype, "documentEditor", {
get: function () {
return this.container.documentEditor;
},
enumerable: true,
configurable: true
});
RibbonGroupBase.prototype.updateSelection = function () {
};
RibbonGroupBase.prototype.wireEvents = function () {
};
RibbonGroupBase.prototype.destroy = function () {
};
return RibbonGroupBase;
}());
exports.RibbonGroupBase = RibbonGroupBase;
});
|