Bug 1834251: adding alt attributes to Open-ILS\src\templates\kpac\parts\paginate...
authorSam Link <slink@LIBPC002>
Tue, 22 Oct 2019 19:51:57 +0000 (15:51 -0400)
committerJane Sandberg <sandbej@linnbenton.edu>
Fri, 20 Mar 2020 14:10:50 +0000 (07:10 -0700)
Signed-off-by: Sam Link <slink@LIBPC002>
Signed-off-by: Llewellyn Marshall <lbmarshallv.ncdcr@gmail.com>
Signed-off-by: Jane Sandberg <sandbej@linnbenton.edu>
Open-ILS/src/templates/kpac/parts/paginate.tt2

index 27844ee..3b3b736 100644 (file)
@@ -17,7 +17,7 @@
                 IF page > 0;
                     href = mkurl('', {page => page - 1});
                 ELSE; class = class _ ' invisible'; END %]
-            <a class="[% class %]" href="[% href %]"><img src="[% ctx.media_prefix %]/images/kpac/arrow_last.png[% ctx.cache_key %]" /></a>
+            <a class="[% class %]" href="[% href %]"><img src="[% ctx.media_prefix %]/images/kpac/arrow_last.png[% ctx.cache_key %]" alt="Last" /></a>
         </td>
 
         <!-- page X of Y -->
                     href = mkurl('', {page => page + 1});
                 ELSE; class = class _ ' invisible'; END;
             %]
-            <a class="[% class %]" href="[% href %]"><img src="[% ctx.media_prefix %]/images/kpac/arrow_next.png[% ctx.cache_key %]" /></a>
+            <a class="[% class %]" href="[% href %]"><img src="[% ctx.media_prefix %]/images/kpac/arrow_next.png[% ctx.cache_key %]" alt="Next" /></a>
         </td>
 
         <!-- Top of page -->
         [% IF showtop %]
             <td class="to_top_btn"><a href="[% mkurl('').replace('#.*', '') %]">
-                <img src="[% ctx.media_prefix %]/images/kpac/to_top_btn.png[% ctx.cache_key %]" />
+                <img src="[% ctx.media_prefix %]/images/kpac/to_top_btn.png[% ctx.cache_key %]" alt="Top" />
             </a></td>
         [% END %]
     </tr>