merge from trunk r1474:1475 into branch 1.6 (fix bug 204: IE doesn't dispaly the same text in tooltips)

git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1477 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
chrisaga 2006-07-15 15:32:20 +00:00
parent c2a6c6228e
commit 8bd96d9349
2 changed files with 32 additions and 0 deletions

View file

@ -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>

View file

@ -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]-->