diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-01-13 07:23:11 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-01-13 07:23:11 +0100 |
commit | 48ca7cb5343cae12ef42133800029272e9da7b3a (patch) | |
tree | 6c10adcf9ce35f9ac086a30425267a461132c964 /themes/default/templates | |
parent | 490b0a06aa0deb4db9cb36c42b5300c7ac96d9a5 (diff) |
issue93, add note to navigation buttons about cursor-keys
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'themes/default/templates')
-rw-r--r-- | themes/default/templates/single_photo.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/default/templates/single_photo.tpl b/themes/default/templates/single_photo.tpl index d7ab987..849ede5 100644 --- a/themes/default/templates/single_photo.tpl +++ b/themes/default/templates/single_photo.tpl @@ -76,7 +76,7 @@ { if $previous_url == "" } <img src="resources/arrow_left_gray.png" alt="first photo reached" /> { else } - <a href="{$previous_url}" onclick="click(this);" title="click for the previous photo"> + <a href="{$previous_url}" onclick="click(this);" title="click for the previous photo (left cursor)"> <img src="resources/arrow_left.png" alt="previous photo" /> </a> { /if } @@ -86,7 +86,7 @@ { if $next_url == "" } <img src="resources/arrow_right_gray.png" alt="last photo reached" /> { else } - <a href="{$next_url}" onclick="click(this);" title="click for the next photo"> + <a href="{$next_url}" onclick="click(this);" title="click for the next photo (right cursor)"> <img src="resources/arrow_right.png" alt="next photo" /> </a> { /if} |