diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-12-31 18:17:27 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-12-31 18:17:27 +0100 |
commit | 2dc7291df7156eee16874ba50e1c97e922e7e11d (patch) | |
tree | 706dfad2ab4bc5d39061727d6a5141d848d97ef4 /themes/default | |
parent | e18531194b112131276e9c7b0207053e917e1e6d (diff) |
add some helpful text to photo-view nav buttons
Diffstat (limited to 'themes/default')
-rw-r--r-- | themes/default/templates/single_photo.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/default/templates/single_photo.tpl b/themes/default/templates/single_photo.tpl index 0965b07..22d8ca2 100644 --- a/themes/default/templates/single_photo.tpl +++ b/themes/default/templates/single_photo.tpl @@ -34,7 +34,7 @@ { if $next_url == "" } <a href="javascript:showPhotoIndex();" onclick="click(this);"> { else } - <a href="{$next_url}" onclick="click(this);"> + <a href="{$next_url}" onclick="click(this);" title="click for the next photo"> { /if } <img src="{$image_url}" width="{$width}" height="{$height}" alt="photo" /> </a> @@ -45,13 +45,13 @@ { if $previous_url == "" } <img src="resources/arrow_left_gray.png" alt="first photo reached" /> { else } - <a href="{$previous_url}" onclick="click(this);"> + <a href="{$previous_url}" onclick="click(this);" title="click for the previous photo"> <img src="resources/arrow_left.png" alt="previous photo" /> </a> { /if } </td> <td style="text-align: center; width: 33%;"> - <a href="javascript:showPhotoIndex({$current});" onclick="click(this);"> + <a href="javascript:showPhotoIndex({$current});" onclick="click(this);" title="click to go back to the index"> <img src="resources/arrow_up.png" alt="photo index" /> </a> </td> @@ -59,7 +59,7 @@ { if $next_url == "" } <img src="resources/arrow_right_gray.png" alt="last photo reached" /> { else } - <a href="{$next_url}" onclick="click(this);" id="next_img" > + <a href="{$next_url}" onclick="click(this);" title="click for the next photo"> <img src="resources/arrow_right.png" alt="next photo" /> </a> { /if} |