all files / actions/ freeze-column.js

100% Statements 12/12
100% Branches 0/0
100% Functions 5/5
100% Lines 12/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19     44569×          
define(["require", "exports", "@syncfusion/ej2-treegrid"], function (require, exports, ej2_treegrid_1) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var Freeze = (function () {
        function Freeze(gantt) {
            this.parent = gantt;
            ej2_treegrid_1.TreeGrid.Inject(ej2_treegrid_1.Freeze);
            this.parent.treeGrid.frozenColumns = this.parent.frozenColumns;
        }
        Freeze.prototype.getModuleName = function () {
            return 'freeze';
        };
        Freeze.prototype.destroy = function () {
        };
        return Freeze;
    }());
    exports.Freeze = Freeze;
});