![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/vue-tables-2/compiled/modules/ |
"use strict"; module.exports = function (h) { var _this = this; return function (right) { var that = _this; var sortControl = require("./sort-control")(h, right); var headings = []; if (_this.hasChildRow && _this.opts.childRowTogglerFirst && _this.opts.showChildRowToggler) headings.push(h("th")); _this.allColumns.map(function (column) { headings.push(h("th", { on: { "keypress": function keypress(e) { if (e.key === "Enter") { that.orderByColumn.bind(that, column, e)(); } }, "click": function click(e) { if (e.target.className !== "resize-handle") { that.orderByColumn.bind(that, column, e)(); } } }, attrs: { id: "VueTables_th--".concat(column), tabindex: "0" }, "class": this.sortableClass(column) }, [h("span", { "class": "VueTables__heading", attrs: { title: this.getHeadingTooltip(column, h) } }, [this.getHeading(column, h)]), sortControl.call(this, column)])); }.bind(_this)); if (_this.hasChildRow && !_this.opts.childRowTogglerFirst && _this.opts.showChildRowToggler) headings.push(h("th")); return headings; }; };