Content deleted Content added
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 5:
document.querySelectorAll('[style]').forEach(function (e){
if (e.className.indexOf('ace_') > -1) {
return;
}
if (e.className === 'table-no') {
e.style.backgroundColor='#400000';
return;
}
if (e.className === 'table-yes') {
e.style.backgroundColor='#004000';
return;
}
|