Drag + Drop IE Alignment Issue

Drag + Drop IE Alignment Issue


Hi There
see this?
http://www.edition38.com/ui/
Try it in ie, when you drag the interface, the helper alignment to the
mouse pointer is out... this is uniformly an ie issue, so i did this
amend to ui.draggable.js.
Orig:
line #189
this.position = { top: e.pageY - this.offset.top, left: e.pageX -
this.offset.left};
My Amended version:
var leftOffset = this.offset.left;
if (jQuery.browser.msie) {
    leftOffset = this.offset.left - 140;
}
this.position = { top: e.pageY - this.offset.top, left: e.pageX -
leftOffset};
I know its not an ideal workaround, but its worked for me on this
application.
I thought id post it up anyway, saw a few alignment issue tickets,
couldnt find this specific one, but didnt want to flood the ticket
system, in case this one had been reported... so thought id put it up
here.