Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -208,7 +208,7 @@
|
|
208 |
<table style="width:100%; border-collapse: separate; border-spacing: 0 10px;">
|
209 |
<thead>
|
210 |
<tr>
|
211 |
-
<th>Text
|
212 |
<th>AR</th>
|
213 |
<th>FM</th>
|
214 |
<th>FM (VAE)</th>
|
@@ -291,7 +291,7 @@
|
|
291 |
table.style.borderSpacing = '0 10px';
|
292 |
const thead = document.createElement('thead');
|
293 |
const headerRow = document.createElement('tr');
|
294 |
-
['Text
|
295 |
const th = document.createElement('th');
|
296 |
th.textContent = h;
|
297 |
headerRow.appendChild(th);
|
|
|
208 |
<table style="width:100%; border-collapse: separate; border-spacing: 0 10px;">
|
209 |
<thead>
|
210 |
<tr>
|
211 |
+
<th>Text</th>
|
212 |
<th>AR</th>
|
213 |
<th>FM</th>
|
214 |
<th>FM (VAE)</th>
|
|
|
291 |
table.style.borderSpacing = '0 10px';
|
292 |
const thead = document.createElement('thead');
|
293 |
const headerRow = document.createElement('tr');
|
294 |
+
['Text', 'AR', 'FM', 'GT'].forEach(h => {
|
295 |
const th = document.createElement('th');
|
296 |
th.textContent = h;
|
297 |
headerRow.appendChild(th);
|