diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-04 18:45:12 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-04 18:45:12 +0000 |
commit | d7790a08d8d457bf07d0277fc9fda3811faf2362 (patch) | |
tree | 23eef23e0d870590792eff12dd53f368461d6d1c | |
parent | 982516477ff958dcb9914e544e0fd6f2de5a459c (diff) |
issue26, added some mouseover text which will explain buttons functions
git-svn-id: file:///var/lib/svn/phpfspot/trunk@161 fa6a889d-dae6-447d-9e79-4ba9a3039384
-rw-r--r-- | templates/index.tpl | 6 | ||||
-rw-r--r-- | templates/tags.tpl | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/templates/index.tpl b/templates/index.tpl index e0b3b4b..c00a591 100644 --- a/templates/index.tpl +++ b/templates/index.tpl @@ -9,13 +9,13 @@ </tr> <tr> <td colspan="2" class="menu"> - <a href="javascript:showPhotoIndex();" onclick="click(this);"> + <a href="javascript:showPhotoIndex();" onclick="click(this);" title="Show Photo Index"> <img src="resources/photo_index.png" alt="photo index" /> </a> - <a href="javascript:Tags('reset', 0);" onclick="click(this);"> + <a href="javascript:Tags('reset', 0);" onclick="click(this);" title="Reset Selected Tags and Tag-Search"> <img src="resources/reload.png" alt="reset tags" /> </a> - <a href="javascript:showCredits();" onclick="click(this);"> + <a href="javascript:showCredits();" onclick="click(this);" title="Show's a little credit page"> <img src="resources/credits.png" alt="show credits" /> </a> </td> diff --git a/templates/tags.tpl b/templates/tags.tpl index 3efcc31..22fd201 100644 --- a/templates/tags.tpl +++ b/templates/tags.tpl @@ -31,8 +31,8 @@ </td> <td style="vertical-align: bottom; white-space: nowrap;"> - <input type="radio" name="condition" value="or" onclick="Tags('condition', this);" {if $current_condition == "or" } checked="checked" { /if } />|| - <input type="radio" name="condition" value="and" onclick="Tags('condition', this);" {if $current_condition == "and" } checked="checked" { /if } />&& + <input type="radio" name="condition" value="or" onclick="Tags('condition', this);" {if $current_condition == "or" } checked="checked" { /if } title="OR condition" />|| + <input type="radio" name="condition" value="and" onclick="Tags('condition', this);" {if $current_condition == "and" } checked="checked" { /if } title="AND condition" />&& </td> </tr> </table> |