Skip to content

Commit

Permalink
- Add an alt tag to the view feat image.
Browse files Browse the repository at this point in the history
- Fix a malformed a tag.
  • Loading branch information
borzilleri committed Nov 15, 2009
1 parent 92b3158 commit 32cba30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/player.html
Expand Up @@ -149,7 +149,7 @@
<div id="PlayerTabs">
<ul>
<li id="powerTab" class="selectedTab">
<a href="javascript:;" id="powerTabLink">Powers<a/></li>
<a href="javascript:;" id="powerTabLink">Powers</a></li>
<li id="skillTab">
<a href="javascript:;" id="skillTabLink">Skills &amp; Feats</a></li>
<? if($char->hasSpellbook()): ?>
Expand Down Expand Up @@ -210,7 +210,7 @@
<? $i=1; foreach($char->Feats as $f): ?>
<tr id="f<?=$f->id;?>" class="row<?=$i;$i=($i+1)%2;?>">
<td class="icon">
<img title="<?=$f->description;?>" class="icon feat_view"
<img title="<?=$f->description;?>" class="icon feat_view" alt="view"
src="<?=MEDIA_URL;?>/images/icon_magnifying-glass.png" /></td>
<td><?=$f->name;?></td>
</tr>
Expand Down

0 comments on commit 32cba30

Please sign in to comment.