is="curly-brackets" 수정

main
이범준 2 months ago
parent 5c9fa822a1
commit 35a746843a

@ -270,7 +270,9 @@ class CurlyBrackets extends HTMLTemplateElement {
let tdCheckboxes = thisCon.querySelectorAll("td>input[type='checkbox']"); let tdCheckboxes = thisCon.querySelectorAll("td>input[type='checkbox']");
tdCheckboxes.forEach(function(node) { tdCheckboxes.forEach(function(node) {
if(node.getAttribute("value") != null && node.getAttribute("value") != "" && node.getAttribute("value") != "on"){ if(node.getAttribute("value") != null && node.getAttribute("value") != ""
&& node.getAttribute("value") != "on"
&& node.getAttribute("value").indexOf(curlyBracketsOpen) == -1){
node.setAttribute("value","{"+node.getAttribute("value")+"}"); node.setAttribute("value","{"+node.getAttribute("value")+"}");
} }
if(node.getAttribute("onchange") != null && node.getAttribute("onchange") == ""){ if(node.getAttribute("onchange") != null && node.getAttribute("onchange") == ""){
@ -280,7 +282,9 @@ class CurlyBrackets extends HTMLTemplateElement {
let tdRadios = thisCon.querySelectorAll("td>input[type='radio']"); let tdRadios = thisCon.querySelectorAll("td>input[type='radio']");
tdRadios.forEach(function(node) { tdRadios.forEach(function(node) {
if(node.getAttribute("value") != null && node.getAttribute("value") != "" && node.getAttribute("value") != "on"){ if(node.getAttribute("value") != null && node.getAttribute("value") != ""
&& node.getAttribute("value") != "on"
&& node.getAttribute("value").indexOf(curlyBracketsOpen) == -1){
node.setAttribute("value","{"+node.getAttribute("value")+"}"); node.setAttribute("value","{"+node.getAttribute("value")+"}");
} }
if(node.getAttribute("onchange") != null && node.getAttribute("onchange") == ""){ if(node.getAttribute("onchange") != null && node.getAttribute("onchange") == ""){

Loading…
Cancel
Save