aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchrisaga <chrisaga@piwigo.org>2006-07-15 15:32:20 +0000
committerchrisaga <chrisaga@piwigo.org>2006-07-15 15:32:20 +0000
commit8bd96d934900a21932e0588f177f28312e25e894 (patch)
tree883ee05421ec7492055648f93fcdd0051b052be5
parentc2a6c6228e901610d8dda55e398ff03346f6544a (diff)
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
-rw-r--r--template-common/tooltipfix.htc31
-rw-r--r--template/yoga/header.tpl1
2 files changed, 32 insertions, 0 deletions
diff --git a/template-common/tooltipfix.htc b/template-common/tooltipfix.htc
new file mode 100644
index 000000000..4ce943af1
--- /dev/null
+++ b/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>
+
diff --git a/template/yoga/header.tpl b/template/yoga/header.tpl
index 3257185cc..050857ad0 100644
--- a/template/yoga/header.tpl
+++ b/template/yoga/header.tpl
@@ -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]-->