all files / document-editor-container/ribbon/ ribbon-interfaces.js

100% Statements 15/15
100% Branches 2/2
85.71% Functions 6/7
100% Lines 15/15
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28   448× 448× 448× 448×     2091×                    
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;
});