diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-06-04 15:29:37 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-06-04 15:29:37 +0200 |
commit | 72afe3153cfaf0f8aaa0a4db115fea62959ff6d1 (patch) | |
tree | 0b51444abb8dbe4882af0d5597d56e9d90eeb8d8 /program/js/app.js | |
parent | 24e89eceed9694882ff943c4106519fab449705f (diff) |
Use <th> tags for table headers as suggested by the WCAG 2.0 Guidelines
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 1f6582bf6..9d08a3f75 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6712,7 +6712,7 @@ function rcube_webmail() tr = document.createElement('tr'); for (c=0, len=repl.length; c < len; c++) { - cell = document.createElement('td'); + cell = document.createElement('th'); cell.innerHTML = repl[c].html || ''; if (repl[c].id) cell.id = repl[c].id; if (repl[c].className) cell.className = repl[c].className; |