Try this, comment out these lines by changing this:
Code:
if (rightedge<tipobj.offsetWidth){
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=curX-tipobj.offsetWidth+"px"
nondefaultpos=true
}
else if (curX<leftedge)
to this (additions red):
Code:
//if (rightedge<tipobj.offsetWidth){
//move the horizontal position of the menu to the left by it's width
//tipobj.style.left=curX-tipobj.offsetWidth+"px"
//nondefaultpos=true
//}
//else if (curX<leftedge)
if (curX<leftedge)
Those extreme right tips should now appear to the right of the calendar entries that they are triggered by with the arrow but, might be too far to the right if so, we can try to fudge it some more.
Bookmarks