More Robust mactionWorkarounds

The previous version was OK with itex2MML
output. But this one will not get tripped up
by extraneous text nodes.
This commit is contained in:
Jacques Distler 2009-11-08 02:27:38 -06:00
parent f9bd8f081f
commit 6be9c5ca6a

View file

@ -43,15 +43,13 @@ function fixRunIn() {
function mactionWorkarounds() {
$$('maction[actiontype="tooltip"]').each( function(mtool){
Element.writeAttribute(mtool, 'title', mtool.lastChild.firstChild.data);
});
Element.writeAttribute(mtool, 'title',
Element.firstDescendant(mtool).nextSibling.firstChild.data);
});
$$('maction[actiontype="statusline"]').each( function(mstatus){
Event.observe(mstatus, 'mouseover', function(){
window.status = mstatus.lastChild.firstChild.data;
});
Event.observe(mstatus, 'mouseout', function(){
window.status = '';
});
var v = Element.firstDescendant(mstatus).nextSibling.firstChild.data;
Event.observe(mstatus, 'mouseover', function(){window.status = v;});
Event.observe(mstatus, 'mouseout', function(){window.status = '';});
});
}