Widget:PriceCalculator: Difference between revisions
Jump to navigation
Jump to search
(textContent is not a function) |
(.) |
||
Line 45: | Line 45: | ||
let row = document.createElement('tr'); | let row = document.createElement('tr'); | ||
row.appendChild(document.createElement('th')).textContent = header; | row.appendChild(document.createElement('th')).textContent = header; | ||
row.appendChild(document.createElement('td')).textContent = | row.appendChild(document.createElement('td')).textContent = content; | ||
return row; | return row; | ||
} | } |