Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/StatusBar/status-bar.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/StatusBar/status-bar.js (révision 6396) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/StatusBar/status-bar.js (copie de travail) @@ -178,10 +178,9 @@ element.href = "#"; element.ancestor = ancestor; element.editor = this.editor; + HTMLArea._addEvent(element, (HTMLArea.is_ie ? "click" : "mousedown"), this.statusBarHandlerFunctRef); if (!HTMLArea.is_opera) { - HTMLArea._addEvents(element, ["click", "contextmenu"], this.statusBarHandlerFunctRef); - } else { - HTMLArea._addEvents(element, ["mousedown", "click"], this.statusBarHandlerFunctRef); + HTMLArea._addEvent(element, "contextmenu", this.statusBarHandlerFunctRef); } element.title = ancestor.style.cssText; text = ancestor.nodeName.toLowerCase();