Sortable: Helper jumps to the left side of the page when start dragging second time

Sortable: Helper jumps to the left side of the page when start dragging second time

As  http://bugs.jqueryui.com doesn't allow me add tickets I copy it here.


When you reorder some element for the first time it is ok. When you start dragging the same element again helper jumps to the left side of the page.

It is only reproducible in Firefox when sortable elements have 'position:related' CSS rule and sortable option {axis: "y"} is set.
Here is the example: [ https://jsbin.com/zarucukela]

I've used the workaround like this:
  1.     var element = $(URLS_CONTAINER);
  2.     $(URLS_CONTAINER).sortable({
  3.         ...
  4.         start:function(event, ui){
  5.             if (ui.helper && ui.helper[0] && ui.helper[0].style) {
  6.                 ui.helper[0].style.left = element[0].offsetLeft + 'px';
  7.             }
  8.         }
  9.     });