Canned answers:
"; 42 | const report_log = document.getElementById("report_log"); 43 | for (let i in table) { 44 | const id = `${table[i].acton}_${table[i].resolution}`; 45 | const a = document.createElement("a"); 46 | a.id = id; 47 | a.classList.add("bgabutton", "bgabutton_blue", table[i].acton); 48 | a.innerHTML = table[i].title; 49 | tools.appendChild(a); 50 | tools.appendChild(document.createTextNode(" ")); 51 | const text = table[i].text; 52 | 53 | a.addEventListener("click", (event) => { 54 | report_log.innerHTML = text; 55 | }); 56 | } 57 | })(); 58 | -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- 1 |