mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-07-04 20:46:39 +02:00
parent
feff447409
commit
e3861e67b4
8 changed files with 166 additions and 3 deletions
|
@ -375,7 +375,7 @@
|
|||
|
||||
scope.createSettingRow = createSettingRow;
|
||||
|
||||
function createThead(displayHidden){
|
||||
function createThead(displayHidden, restContent){
|
||||
const tHead = document.createElement("thead");
|
||||
const headRow = document.createElement("tr");
|
||||
const hideHeadCell = document.createElement("td");
|
||||
|
@ -393,6 +393,9 @@
|
|||
|
||||
const restHeadCell = document.createElement("td");
|
||||
restHeadCell.colSpan = 2;
|
||||
if (restContent){
|
||||
restHeadCell.appendChild(restContent);
|
||||
}
|
||||
headRow.appendChild(restHeadCell);
|
||||
tHead.appendChild(headRow);
|
||||
return tHead;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue