From e58193f87f2ec292887cad2d0103107129fcc581 Mon Sep 17 00:00:00 2001 From: Don Mitchell Date: Fri, 25 Jan 2013 13:03:54 -0500 Subject: [PATCH] Updated comment --- common/static/js/vendor/jquery.ui.draggable.js | 1 + 1 file changed, 1 insertion(+) diff --git a/common/static/js/vendor/jquery.ui.draggable.js b/common/static/js/vendor/jquery.ui.draggable.js index 70044a7de2..b04686507c 100644 --- a/common/static/js/vendor/jquery.ui.draggable.js +++ b/common/static/js/vendor/jquery.ui.draggable.js @@ -207,6 +207,7 @@ $.widget("ui.draggable", $.ui.mouse, { // scroll. This causes position to change faster than the mouse which races the helper // ahead. This "fixes" that bug here whereas the real fix should be in either the // computation of pageY or scrollTop() or caching of scrollTop at same state as pageY + // btw: known bug in jqueryui http://bugs.jqueryui.com/ticket/5718 if (this.scrollParent.is(document) && this.cssPosition === 'relative') { this.helper[0].style.top = (event.pageY - this.originalPageY) +"px"; }