latin: header row with sequence number
[sheet.git] / latinsample.js
index b576f955514949eb24c59f3c4d93619824a6fe88..37d323164f46a8593336042b975f2e2ad91e235f 100644 (file)
@@ -3,6 +3,10 @@ function appendsample() {
        for (var row of rows) {
                // append sample column
                var samplecol = row.getElementsByClassName('sample');
+               if (!this.value.length) {
+                       row.removeChild(samplecol[0]);
+                       continue;
+               }
                if (samplecol.length) {
                        samplecol = samplecol[0];
                }
@@ -22,6 +26,9 @@ function appendsample() {
                                cols[++col] = same;
                        }
                }
+               for (var col = 0; col < cols.length; col++) {
+                       cols[col] = cols[col].innerHTML.trimRight();
+               }
 
                // copy letters into sample
                var output = '';
@@ -34,11 +41,18 @@ function appendsample() {
                        }
 
                        if (col < cols.length) {
-                               output += '<span>' + (cols[col].innerHTML.trimRight() || ' ') + '</span>';
+                               output += '<span>' + (cols[col] || ' ') + '</span>';
                        }
                        else {
                                output += ' ';
                        }
+                       if (row.parentNode.tagName == 'THEAD') {
+                               output += col < 26 ? ' ' : 'ยท '; // number separator
+                       }
+               }
+               if (cols[29] && !cols[28]) {
+                       // circumfix sign if no repetition
+                       output = cols[29] + output + cols[29];
                }
                samplecol.innerHTML = output;
        }