aboutsummaryrefslogtreecommitdiffstats
path: root/template-common
diff options
context:
space:
mode:
authorchrisaga <chrisaga@piwigo.org>2006-07-15 15:26:51 +0000
committerchrisaga <chrisaga@piwigo.org>2006-07-15 15:26:51 +0000
commit450ec6cfdf357ad496f8bed38b7ef6227a6e72d0 (patch)
treef76cd98d93ef7aa69b0d989fd20d3f71dc5bb052 /template-common
parent61ca501bcf3227b581127bf53d2614d941464a2a (diff)
fix bug 204: IE doesn't dispaly the same text in tooltips (info-bulles) 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
Diffstat (limited to 'template-common')
-rw-r--r--template-common/tooltipfix.htc31
1 files changed, 31 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>
+