diff options
Diffstat (limited to 'BSF/template-common/tooltipfix.htc')
-rw-r--r-- | BSF/template-common/tooltipfix.htc | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/BSF/template-common/tooltipfix.htc b/BSF/template-common/tooltipfix.htc deleted file mode 100644 index 4ce943af1..000000000 --- a/BSF/template-common/tooltipfix.htc +++ /dev/null @@ -1,31 +0,0 @@ -<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> - |