Skip to content

Commit

Permalink
fix bug 204: IE doesn't dispaly the same text in tooltips (info-bulle…
Browse files Browse the repository at this point in the history
…s) than other browsers

	use a behaviour (.htc) to fix alt and title attribute when mouse is over IMG
	only for IMG in a link, others will not be fixed.

git-svn-id: http://piwigo.org/svn/trunk@1475 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
chrisaga committed Jul 15, 2006
1 parent 61ca501 commit 450ec6c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
31 changes: 31 additions & 0 deletions template-common/tooltipfix.htc
@@ -0,0 +1,31 @@
<public:attach event="onmouseover" onevent="montrer()" />
<public:attach event="onmouseout" onevent="cacher()" />

<script langage=javascript>
var thisImg = this;
var thisTitle = this.title;
var thisAlt = this.alt;
var thisA = this.parentNode;
var aTitle = thisA.title;

function montrer()
{
if (aTitle)
{
thisAlt=thisImg.alt;
thisImg.alt=aTitle;
thisImg.title=aTitle;
}
return;
}

function cacher() {
if (thisAlt)
{
thisImg.alt=thisAlt;
thisImg.title=thisTitle;
}
return;
}
</script>

1 change: 1 addition & 0 deletions template/yoga/header.tpl
Expand Up @@ -27,6 +27,7 @@ the "text/nonsense" prevents gecko based browsers to load it -->
<style>
/* only because we need \{pwg_root\} otherwise use fix-ie5-ie6.css */
BODY { behavior:url("{pwg_root}template-common/csshover.htc"); }
A IMG, .button, .icon { behavior:url("{pwg_root}template-common/tooltipfix.htc"); }
</style>
<script type="text/javascript" src="{pwg_root}include/pngfix.js"></script>
<![endif]-->
Expand Down

0 comments on commit 450ec6c

Please sign in to comment.