From: Ilmari Karonen Date: Sat, 30 Dec 2006 01:16:55 +0000 (+0000) Subject: reset image alt attributes too (doesn't seem to have any effect on my browser, but... X-Git-Tag: 1.31.0-rc.0~54730 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=7c97c9b5f4791197365f1971a256d2dc9c849a28;p=lhc%2Fweb%2Fwiklou.git reset image alt attributes too (doesn't seem to have any effect on my browser, but do it right anyway) --- 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',"↕"); } } }