From 9cac99228f464aef740cf5812e75ff0cd489609c Mon Sep 17 00:00:00 2001 From: kborchers Date: Fri, 6 May 2011 23:39:34 -0500 Subject: [PATCH] Draggable: Added check to stop propogation in IE. Fixed #4333 - Nested draggables problem in IE --- ui/jquery.ui.draggable.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/jquery.ui.draggable.js b/ui/jquery.ui.draggable.js index 774ea43802a..3c3d0efd10b 100644 --- a/ui/jquery.ui.draggable.js +++ b/ui/jquery.ui.draggable.js @@ -89,6 +89,8 @@ $.widget("ui.draggable", $.ui.mouse, { .css($(this).offset()) .appendTo("body"); }); + + if ($.browser.msie) event.stopPropagation(); return true;