From 7c97c9b5f4791197365f1971a256d2dc9c849a28 Mon Sep 17 00:00:00 2001 From: Ilmari Karonen Date: Sat, 30 Dec 2006 01:16:55 +0000 Subject: [PATCH] reset image alt attributes too (doesn't seem to have any effect on my browser, but do it right anyway) --- skins/common/sorttable.js | 1 + 1 file changed, 1 insertion(+) diff --git a/skins/common/sorttable.js b/skins/common/sorttable.js index 28a06e610c..66b2edf157 100644 --- a/skins/common/sorttable.js +++ b/skins/common/sorttable.js @@ -115,6 +115,7 @@ function ts_resortTable(lnk) { if (allimgs[ci].className == 'sortarrow') { if (getParent(allimgs[ci],"table") == getParent(lnk,"table")) { // in the same table as us? allimgs[ci].setAttribute('src',NO_ARROW); + allimgs[ci].setAttribute('alt',"↕"); } } } -- 2.20.1