Index: trunk/admin/browse/toolbar.js =================================================================== diff -u -r1510 -r1514 --- trunk/admin/browse/toolbar.js (.../toolbar.js) (revision 1510) +++ trunk/admin/browse/toolbar.js (.../toolbar.js) (revision 1514) @@ -86,27 +86,31 @@ preloadImage(getButtonSrc(oIMG, j),oIMG.basepath); oIMG.style.cursor = (oIMG.disabled) ? "default" : "hand"; + oIMG.setAttribute("title", childNodes[i].getAttribute("title")); oIMG.onclick = function() { - if (this.disabled) return; - if (this.toolbar.actionHandler) - this.toolbar.actionHandler(this) + if (this.disabled) return; + if(this.toolbar.actionHandler) this.toolbar.actionHandler(this); } oIMG.onmouseover = function(e) { - if (this.disabled) return; - this.src = getButtonSrc(this, 1); - var evt = (e) ? e : event; evt.cancelBubble = true; + var evt = (e) ? e : event; +// evt.cancelBubble = true; + + if (this.disabled) return; + this.src = getButtonSrc(this, 1); } oIMG.onmouseout = function(e) { - if (this.disabled) return; - this.src = getButtonSrc(this, 0); - var evt = (e) ? e : event; evt.cancelBubble = true; + var evt = (e) ? e : event; +// evt.cancelBubble = true; + + if (this.disabled) return; + this.src = getButtonSrc(this, 0); } break; }