|
|
@ -206,9 +206,11 @@ class CurlyBrackets extends HTMLTemplateElement {
|
|
|
|
node.setAttribute("ondblclick","{ondblclick}");
|
|
|
|
node.setAttribute("ondblclick","{ondblclick}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(node.childElementCount == 0){
|
|
|
|
if(node.textContent.trim() != "" && node.textContent.indexOf(curlyBracketsOpen) == -1){
|
|
|
|
if(node.textContent.trim() != "" && node.textContent.indexOf(curlyBracketsOpen) == -1){
|
|
|
|
node.textContent = "{"+node.textContent.trim()+"}";
|
|
|
|
node.textContent = "{"+node.textContent.trim()+"}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
let tdCheckboxes = thisCon.querySelectorAll("td>input[type='checkbox']");
|
|
|
|
let tdCheckboxes = thisCon.querySelectorAll("td>input[type='checkbox']");
|
|
|
|